[3447] | 1 | <?php /* |
---|
| 2 | Plugin Name: RV Maps&Earth |
---|
[22180] | 3 | Version: 2.5.b |
---|
[3447] | 4 | Description: Extend your gallery with Google Maps and Google Earth ... |
---|
[4070] | 5 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=122 |
---|
[3447] | 6 | Author: rvelices |
---|
| 7 | Author URI: http://www.modusoptimus.com/ |
---|
| 8 | */ |
---|
[22180] | 9 | define( 'RVM_PLUGIN_VERSION', '2.5.b'); |
---|
[12701] | 10 | defined('PHPWG_ROOT_PATH') or die('Hacking attempt!'); |
---|
[3447] | 11 | |
---|
| 12 | add_event_handler('loc_end_index', 'rvm_end_index' ); |
---|
| 13 | add_event_handler('loc_begin_index_category_thumbnails', 'rvm_index_cat_thumbs_displayed'); |
---|
| 14 | add_event_handler('loc_begin_index_thumbnails', 'rvm_begin_index_thumbnails'); |
---|
| 15 | |
---|
| 16 | add_event_handler('picture_pictures_data', 'rvm_picture_pictures_data' ); |
---|
[20983] | 17 | add_event_handler('blockmanager_apply', 'rvm_blockmanager_apply'); |
---|
[3447] | 18 | |
---|
| 19 | global $rvm_dir; |
---|
| 20 | $rvm_dir = basename( dirname(__FILE__) ); |
---|
| 21 | |
---|
[12701] | 22 | global $conf; |
---|
| 23 | if (@$conf['gmaps_auto_sync']) |
---|
| 24 | { |
---|
| 25 | $conf['use_exif_mapping']['lat'] = 'lat'; |
---|
| 26 | $conf['use_exif_mapping']['lon'] = 'lon'; |
---|
| 27 | add_event_handler('format_exif_data', 'rvm_format_exif', EVENT_HANDLER_PRIORITY_NEUTRAL, 3); |
---|
| 28 | } |
---|
[3447] | 29 | |
---|
| 30 | function rvm_index_cat_thumbs_displayed() |
---|
| 31 | { |
---|
| 32 | global $page; |
---|
| 33 | $page['rvm_cat_thumbs_displayed'] = true; |
---|
| 34 | } |
---|
| 35 | |
---|
| 36 | function rvm_begin_index_thumbnails( $pictures ) |
---|
| 37 | { |
---|
| 38 | global $page; |
---|
| 39 | foreach ($pictures as $picture) |
---|
| 40 | { |
---|
| 41 | if ( isset($picture['lat']) ) |
---|
| 42 | { |
---|
| 43 | $page['rvm_items_have_latlon'] = true; |
---|
| 44 | break; |
---|
| 45 | } |
---|
| 46 | } |
---|
| 47 | } |
---|
| 48 | |
---|
[8776] | 49 | define('RVM_ACTION_MODEL', '<a href="%s" title="%s" rel="nofollow" class="pwg-state-default pwg-button"%s><span class="pwg-icon pwg-icon-%s"> </span><span class="pwg-button-text">%s</span></a>'); |
---|
[8304] | 50 | |
---|
[3447] | 51 | function rvm_end_index() |
---|
| 52 | { |
---|
| 53 | global $page, $filter, $template, $rvm_dir; |
---|
| 54 | |
---|
| 55 | //if ( !is_admin() ) return; // TEMP |
---|
| 56 | if ( isset($page['chronology_field']) || $filter['enabled'] ) |
---|
| 57 | return; |
---|
| 58 | |
---|
| 59 | if ( 'categories' == @$page['section']) |
---|
| 60 | { // flat or no flat ; has subcats or not; ? |
---|
| 61 | if ( ! @$page['rvm_cat_thumbs_displayed'] and empty($page['items']) ) |
---|
| 62 | return; |
---|
| 63 | } |
---|
| 64 | else |
---|
| 65 | { |
---|
| 66 | if ( |
---|
| 67 | !in_array( @$page['section'], array('tags','search','recent_pics','list') ) |
---|
| 68 | ) |
---|
| 69 | return; |
---|
| 70 | if ( empty($page['items']) ) |
---|
| 71 | return; |
---|
| 72 | } |
---|
| 73 | |
---|
| 74 | include_once( dirname(__FILE__) .'/include/functions.php'); |
---|
| 75 | |
---|
| 76 | if ( !empty($page['items']) ) |
---|
| 77 | { |
---|
| 78 | if (!@$page['rvm_items_have_latlon'] and ! rvm_items_have_latlon( $page['items'] ) ) |
---|
| 79 | return; |
---|
| 80 | } |
---|
| 81 | rvm_load_language(); |
---|
| 82 | |
---|
| 83 | $map_url = rvm_duplicate_map_index_url( array(), array('start') ); |
---|
[18578] | 84 | $link_title = sprintf( l10n('displays %s on a map'), strip_tags($page['title']) ); |
---|
| 85 | $template->concat( 'PLUGIN_INDEX_ACTIONS' , "\n<li>".sprintf(RVM_ACTION_MODEL, |
---|
| 86 | $map_url, $link_title, '', 'map', l10n('Map') |
---|
| 87 | ).'</li>'); |
---|
[3447] | 88 | } |
---|
| 89 | |
---|
| 90 | function rvm_picture_pictures_data($pictures) |
---|
| 91 | { |
---|
| 92 | if ( isset($pictures['current']['lat']) and isset($pictures['current']['lon']) ) |
---|
| 93 | { |
---|
| 94 | global $template; |
---|
[14181] | 95 | $template->append('head_elements', '<meta name=geo.position content='.$pictures['current']['lat'].';'.$pictures['current']['lon'].'>' ); |
---|
[3447] | 96 | include_once( dirname(__FILE__) .'/include/functions.php'); |
---|
| 97 | rvm_load_language(); |
---|
| 98 | if ( isset($_GET['map']) ) |
---|
| 99 | include_once( dirname(__FILE__) .'/include/picture_map.inc.php'); |
---|
| 100 | else |
---|
| 101 | { |
---|
| 102 | global $rvm_dir; |
---|
| 103 | $map_url = rvm_duplicate_map_picture_url(); |
---|
[18951] | 104 | $link_title = sprintf( l10n('displays %s on a map'), strip_tags($pictures['current']['TITLE']) ); |
---|
[12700] | 105 | $template->concat( 'PLUGIN_PICTURE_ACTIONS' , sprintf(RVM_ACTION_MODEL, |
---|
[18578] | 106 | $map_url, $link_title, ' target="_top"', 'map', l10n('Map') |
---|
[8304] | 107 | )); |
---|
[3447] | 108 | } |
---|
| 109 | } |
---|
| 110 | else |
---|
| 111 | if ( isset($_GET['map']) ) |
---|
| 112 | redirect( duplicate_picture_url() ); |
---|
| 113 | return $pictures; |
---|
| 114 | } |
---|
| 115 | |
---|
[20983] | 116 | function rvm_blockmanager_apply($mb_arr) |
---|
| 117 | { |
---|
| 118 | if ($mb_arr[0]->get_id() != 'menubar' ) |
---|
| 119 | return; |
---|
| 120 | if ( ($block=$mb_arr[0]->get_block('mbMenu')) != null ) |
---|
| 121 | { |
---|
| 122 | include_once( dirname(__FILE__) .'/include/functions.php'); |
---|
| 123 | rvm_load_language(); |
---|
| 124 | global $conf; |
---|
| 125 | $link_title = sprintf( l10n('displays %s on a map'), strip_tags($conf['gallery_title']) ); |
---|
| 126 | $block->data['rv_gmaps'] = array( |
---|
| 127 | 'URL' => rvm_make_map_index_url( array('section'=>'categories') ), |
---|
| 128 | 'TITLE' => $link_title, |
---|
| 129 | 'NAME' => l10n('World map'), |
---|
| 130 | 'REL'=> 'rel=nofollow' |
---|
| 131 | ); |
---|
| 132 | } |
---|
| 133 | } |
---|
| 134 | |
---|
[12701] | 135 | function rvm_format_exif($exif, $file, $map) |
---|
| 136 | { |
---|
| 137 | if (isset($map['lat'])) |
---|
| 138 | { |
---|
| 139 | include_once( dirname(__FILE__) .'/include/functions_metadata.php'); |
---|
| 140 | $ll = exif_to_lat_lon($exif); |
---|
| 141 | if (is_array($ll)) |
---|
| 142 | { |
---|
| 143 | $exif[$map['lat']] = $ll[0]; |
---|
| 144 | $exif[$map['lon']] = $ll[1]; |
---|
| 145 | } |
---|
| 146 | } |
---|
| 147 | return $exif; |
---|
| 148 | } |
---|
[17286] | 149 | |
---|
| 150 | if (defined('IN_ADMIN')) { |
---|
| 151 | include_once(dirname(__FILE__).'/admin/admin_boot.php'); |
---|
| 152 | } |
---|
[3447] | 153 | ?> |
---|