1 | <?php /* |
---|
2 | Plugin Name: RV Maps&Earth |
---|
3 | Version: 2.4.g |
---|
4 | Description: Extend your gallery with Google Maps and Google Earth ... |
---|
5 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=122 |
---|
6 | Author: rvelices |
---|
7 | Author URI: http://www.modusoptimus.com/ |
---|
8 | */ |
---|
9 | define( 'RVM_PLUGIN_VERSION', '2.4.f'); |
---|
10 | defined('PHPWG_ROOT_PATH') or die('Hacking attempt!'); |
---|
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' ); |
---|
17 | |
---|
18 | global $rvm_dir; |
---|
19 | $rvm_dir = basename( dirname(__FILE__) ); |
---|
20 | |
---|
21 | global $conf; |
---|
22 | if (@$conf['gmaps_auto_sync']) |
---|
23 | { |
---|
24 | $conf['use_exif_mapping']['lat'] = 'lat'; |
---|
25 | $conf['use_exif_mapping']['lon'] = 'lon'; |
---|
26 | add_event_handler('format_exif_data', 'rvm_format_exif', EVENT_HANDLER_PRIORITY_NEUTRAL, 3); |
---|
27 | } |
---|
28 | |
---|
29 | function rvm_index_cat_thumbs_displayed() |
---|
30 | { |
---|
31 | global $page; |
---|
32 | $page['rvm_cat_thumbs_displayed'] = true; |
---|
33 | } |
---|
34 | |
---|
35 | function rvm_begin_index_thumbnails( $pictures ) |
---|
36 | { |
---|
37 | global $page; |
---|
38 | foreach ($pictures as $picture) |
---|
39 | { |
---|
40 | if ( isset($picture['lat']) ) |
---|
41 | { |
---|
42 | $page['rvm_items_have_latlon'] = true; |
---|
43 | break; |
---|
44 | } |
---|
45 | } |
---|
46 | } |
---|
47 | |
---|
48 | 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>'); |
---|
49 | |
---|
50 | function rvm_end_index() |
---|
51 | { |
---|
52 | global $page, $filter, $template, $rvm_dir; |
---|
53 | |
---|
54 | //if ( !is_admin() ) return; // TEMP |
---|
55 | if ( isset($page['chronology_field']) || $filter['enabled'] ) |
---|
56 | return; |
---|
57 | |
---|
58 | if ( 'categories' == @$page['section']) |
---|
59 | { // flat or no flat ; has subcats or not; ? |
---|
60 | if ( ! @$page['rvm_cat_thumbs_displayed'] and empty($page['items']) ) |
---|
61 | return; |
---|
62 | } |
---|
63 | else |
---|
64 | { |
---|
65 | if ( |
---|
66 | !in_array( @$page['section'], array('tags','search','recent_pics','list') ) |
---|
67 | ) |
---|
68 | return; |
---|
69 | if ( empty($page['items']) ) |
---|
70 | return; |
---|
71 | } |
---|
72 | |
---|
73 | include_once( dirname(__FILE__) .'/include/functions.php'); |
---|
74 | |
---|
75 | if ( !empty($page['items']) ) |
---|
76 | { |
---|
77 | if (!@$page['rvm_items_have_latlon'] and ! rvm_items_have_latlon( $page['items'] ) ) |
---|
78 | return; |
---|
79 | } |
---|
80 | rvm_load_language(); |
---|
81 | |
---|
82 | $map_url = rvm_duplicate_map_index_url( array(), array('start') ); |
---|
83 | $link_title = sprintf( l10n('displays %s on a map'), strip_tags($page['title']) ); |
---|
84 | $template->concat( 'PLUGIN_INDEX_ACTIONS' , "\n<li>".sprintf(RVM_ACTION_MODEL, |
---|
85 | $map_url, $link_title, '', 'map', l10n('Map') |
---|
86 | ).'</li>'); |
---|
87 | } |
---|
88 | |
---|
89 | function rvm_picture_pictures_data($pictures) |
---|
90 | { |
---|
91 | if ( isset($pictures['current']['lat']) and isset($pictures['current']['lon']) ) |
---|
92 | { |
---|
93 | global $template; |
---|
94 | $template->append('head_elements', '<meta name=geo.position content='.$pictures['current']['lat'].';'.$pictures['current']['lon'].'>' ); |
---|
95 | include_once( dirname(__FILE__) .'/include/functions.php'); |
---|
96 | rvm_load_language(); |
---|
97 | if ( isset($_GET['map']) ) |
---|
98 | include_once( dirname(__FILE__) .'/include/picture_map.inc.php'); |
---|
99 | else |
---|
100 | { |
---|
101 | global $rvm_dir; |
---|
102 | $map_url = rvm_duplicate_map_picture_url(); |
---|
103 | $link_title = sprintf( l10n('displays %s on a map'), strip_tags($pictures['current']['name']) ); |
---|
104 | $template->concat( 'PLUGIN_PICTURE_ACTIONS' , sprintf(RVM_ACTION_MODEL, |
---|
105 | $map_url, $link_title, ' target="_top"', 'map', l10n('Map') |
---|
106 | )); |
---|
107 | } |
---|
108 | } |
---|
109 | else |
---|
110 | if ( isset($_GET['map']) ) |
---|
111 | redirect( duplicate_picture_url() ); |
---|
112 | return $pictures; |
---|
113 | } |
---|
114 | |
---|
115 | function rvm_format_exif($exif, $file, $map) |
---|
116 | { |
---|
117 | if (isset($map['lat'])) |
---|
118 | { |
---|
119 | include_once( dirname(__FILE__) .'/include/functions_metadata.php'); |
---|
120 | $ll = exif_to_lat_lon($exif); |
---|
121 | if (is_array($ll)) |
---|
122 | { |
---|
123 | $exif[$map['lat']] = $ll[0]; |
---|
124 | $exif[$map['lon']] = $ll[1]; |
---|
125 | } |
---|
126 | } |
---|
127 | return $exif; |
---|
128 | } |
---|
129 | |
---|
130 | if (defined('IN_ADMIN')) { |
---|
131 | include_once(dirname(__FILE__).'/admin/admin_boot.php'); |
---|
132 | } |
---|
133 | ?> |
---|