|
Revision 5061, 1.1 KB
(checked in by cljosse, 3 years ago)
|
|
[Edit_gmaps] make markers draggable
|
| Line | |
|---|
| 1 | <?php /* |
|---|
| 2 | Plugin Name: Edit Maps&Earth |
|---|
| 3 | Version: 1.0.3 |
|---|
| 4 | Description: Editor for rv gmaps |
|---|
| 5 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=330 |
|---|
| 6 | Author: rvelices cljosse |
|---|
| 7 | Author URI: http://cl.josse.free.fr/ |
|---|
| 8 | */ |
|---|
| 9 | |
|---|
| 10 | define( 'ed_rvm_PLUGIN_VERSION', '2.0.0'); |
|---|
| 11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
|---|
| 12 | add_event_handler('get_admin_plugin_menu_links', 'ed_rvm_plugin_admin_menu' ); |
|---|
| 13 | |
|---|
| 14 | global $ed_rvm_dir; |
|---|
| 15 | $ed_rvm_dir = basename( dirname(__FILE__) ); |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | function ed_rvm_plugin_admin_menu($menu) |
|---|
| 19 | { |
|---|
| 20 | // include_once( dirname(__FILE__) .'/include/functions.php'); |
|---|
| 21 | add_event_handler('invalidate_user_cache', 'rvm_invalidate_cache' ); |
|---|
| 22 | |
|---|
| 23 | array_push($menu, |
|---|
| 24 | array( |
|---|
| 25 | |
|---|
| 26 | 'NAME' => 'EDIT Maps & Earth', |
|---|
| 27 | 'URL' => get_admin_plugin_menu_link(dirname(__FILE__).'/admin/admin.php') |
|---|
| 28 | ) |
|---|
| 29 | ); |
|---|
| 30 | return $menu; |
|---|
| 31 | } |
|---|
| 32 | |
|---|
| 33 | add_event_handler('loc_after_page_header', 'cl_conflit'); |
|---|
| 34 | function cl_conflit() { |
|---|
| 35 | global $template,$page; |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | if ( isset($_GET['map']) ) |
|---|
| 39 | { |
|---|
| 40 | |
|---|
| 41 | $template->set_filenames(array('cl_conflit' => dirname(__FILE__).'/template/cl_conflit.tpl')); |
|---|
| 42 | $template->parse('cl_conflit'); |
|---|
| 43 | }else{ |
|---|
| 44 | |
|---|
| 45 | } |
|---|
| 46 | return ; |
|---|
| 47 | } |
|---|
| 48 | |
|---|
| 49 | |
|---|
| 50 | ?> |
|---|