source: extensions/rv_sitemap/main.inc.php @ 14518

Last change on this file since 14518 was 12431, checked in by rvelices, 12 years ago

rv_sitemap fix lang keys

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 609 bytes
RevLine 
[3417]1<?php /*
2Plugin Name: RV sitemap
[12431]3Version: 2.3.b
[3417]4Description: Creates a sitemap for your gallery. Sitemaps are used to inform search engines about pages that are available for crawling.
[6260]5Plugin URI: http://piwigo.org/ext/extension_view.php?eid=78
[3417]6Author: rvelices
7Author URI: http://www.modusoptimus.com/
8*/
9
10add_event_handler('get_admin_plugin_menu_links', 'sitemap_plugin_admin_menu' );
11
12function sitemap_plugin_admin_menu($menu)
13{
14  array_push($menu,
15      array(
16        'NAME' => 'Sitemap',
17        'URL' => get_admin_plugin_menu_link(dirname(__FILE__).'/sitemap.php')
18      )
19    );
20  return $menu;
21}
22
23?>
Note: See TracBrowser for help on using the repository browser.