|
Revision 8666, 0.6 KB
(checked in by rvelices, 2 years ago)
|
|
rv_gmaps feature 2102 : rename item/image/picture to photo
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <?php /* |
|---|
| 2 | Plugin Name: RV sitemap |
|---|
| 3 | Version: 2.2.a |
|---|
| 4 | Description: Creates a sitemap for your gallery. Sitemaps are used to inform search engines about pages that are available for crawling. |
|---|
| 5 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=78 |
|---|
| 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 | { |
|---|
| 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 | ?> |
|---|