Last change
on this file since 32689 was
29806,
checked in by rvelices, 10 years ago
|
rv sitemap compatible 2.7
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
583 bytes
|
Rev | Line | |
---|
[3417] | 1 | <?php /* |
---|
| 2 | Plugin Name: RV sitemap |
---|
[29806] | 3 | Version: 2.7.a |
---|
[3417] | 4 | Description: Creates a sitemap for your gallery. Sitemaps are used to inform search engines about pages that are available for crawling. |
---|
[6260] | 5 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=78 |
---|
[3417] | 6 | Author: rvelices |
---|
| 7 | Author URI: http://www.modusoptimus.com/ |
---|
| 8 | */ |
---|
| 9 | |
---|
| 10 | add_event_handler('get_admin_plugin_menu_links', 'sitemap_plugin_admin_menu' ); |
---|
| 11 | |
---|
| 12 | function sitemap_plugin_admin_menu($menu) |
---|
| 13 | { |
---|
[18954] | 14 | $menu[] = array( |
---|
| 15 | 'NAME' => 'Sitemap', |
---|
| 16 | 'URL' => get_admin_plugin_menu_link(dirname(__FILE__).'/sitemap.php') |
---|
[3417] | 17 | ); |
---|
| 18 | return $menu; |
---|
| 19 | } |
---|
| 20 | |
---|
| 21 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.