Changeset 17286
- Timestamp:
- Aug 1, 2012, 5:49:24 PM (12 years ago)
- Location:
- extensions/rv_gmaps/trunk
- Files:
-
- 1 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/rv_gmaps/trunk/admin/admin.php
r12700 r17286 14 14 $tabsheet = new tabsheet(); 15 15 $tabsheet->add( 'config', 'Configuration', add_url_params( $my_base_url, array('tab'=>'config') ) ); 16 $tabsheet->add( 'edit', 'Edit', add_url_params( $my_base_url, array('tab'=>'edit') ) );17 16 $tabsheet->add( 'sync', 'Synchronize', add_url_params( $my_base_url, array('tab'=>'sync') ) ); 18 17 $tabsheet->select($page['tab']); -
extensions/rv_gmaps/trunk/changelog.txt
r15840 r17286 1 2.4.c 2 - photos are now geotagged in the batch manager instead of a special plugin page 3 1 4 2.4.b 2 5 - language updates -
extensions/rv_gmaps/trunk/language/en_UK/lang.php
r12706 r17286 22 22 23 23 $lang['More photos near this location']='More photos near this location'; 24 25 $lang['Geotagged']='Geotagged'; 26 $lang['Not geotagged']='Not geotagged'; 27 $lang['Geotag']='Geotag'; 24 28 ?> -
extensions/rv_gmaps/trunk/main.inc.php
r15840 r17286 1 1 <?php /* 2 2 Plugin Name: RV Maps&Earth 3 Version: 2.4. b3 Version: 2.4.c 4 4 Description: Extend your gallery with Google Maps and Google Earth ... 5 5 Plugin URI: http://piwigo.org/ext/extension_view.php?eid=122 … … 15 15 16 16 add_event_handler('picture_pictures_data', 'rvm_picture_pictures_data' ); 17 add_event_handler('get_admin_plugin_menu_links', 'rvm_plugin_admin_menu' );18 17 19 18 global $rvm_dir; … … 125 124 } 126 125 127 function rvm_plugin_admin_menu($menu)128 {129 include_once( dirname(__FILE__) .'/include/functions.php');130 add_event_handler('invalidate_user_cache', 'rvm_invalidate_cache' );131 132 array_push($menu,133 array(134 'NAME' => 'Maps & Earth',135 'URL' => get_admin_plugin_menu_link(dirname(__FILE__).'/admin/admin.php')136 )137 );138 return $menu;139 }140 141 126 function rvm_format_exif($exif, $file, $map) 142 127 { … … 153 138 return $exif; 154 139 } 140 141 if (defined('IN_ADMIN')) { 142 include_once(dirname(__FILE__).'/admin/admin_boot.php'); 143 } 155 144 ?>
Note: See TracChangeset
for help on using the changeset viewer.