1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: GMaps |
---|
4 | Version: 1.2.0 |
---|
5 | Description: Display and manage (google) maps |
---|
6 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=454 |
---|
7 | Author: grum@piwigo.org |
---|
8 | Author URI: http://photos.grum.fr |
---|
9 | */ |
---|
10 | |
---|
11 | /* |
---|
12 | -------------------------------------------------------------------------------- |
---|
13 | Author : Grum |
---|
14 | email : grum@piwigo.com |
---|
15 | website : http://photos.grum.fr |
---|
16 | PWG user : http://forum.phpwebgallery.net/profile.php?id=3706 |
---|
17 | |
---|
18 | << May the Little SpaceFrog be with you ! >> |
---|
19 | -------------------------------------------------------------------------------- |
---|
20 | |
---|
21 | :: HISTORY |
---|
22 | |
---|
23 | | release | date | |
---|
24 | | 0.1.0 | 2010-08-22 | * first lines of code |
---|
25 | | | | . release not published |
---|
26 | | | | |
---|
27 | | 1.0.0 | 2010-09-30 | * first official release |
---|
28 | | | | |
---|
29 | | 1.1.0 | 2010-10-20 | * mantis bug:1926 |
---|
30 | | | | . key not translated |
---|
31 | | | | |
---|
32 | | | | * mantis bug:1927 |
---|
33 | | | | . Autozoom on categories maps : needs a min/max level |
---|
34 | | | | |
---|
35 | | | | * mantis bug:1929 |
---|
36 | | | | . allowing to set the size for automatic size |
---|
37 | | | | |
---|
38 | | | | * mantis bug:1930 |
---|
39 | | | | . Improve loading time for markers |
---|
40 | | | | |
---|
41 | | | | * mantis bug:1931 |
---|
42 | | | | . when an association is modified, it's possible to |
---|
43 | | | | set a category already associated |
---|
44 | | | | |
---|
45 | | | | * mantis bug:1939 |
---|
46 | | | | . compatibility with ExtendedDescription |
---|
47 | | | | |
---|
48 | | | | * mantis bug:1946 |
---|
49 | | | | . Save KML files in local directory |
---|
50 | | | | |
---|
51 | | 1.2.0 | 2010-10-28 | * mantis bug:1972 |
---|
52 | | | | . thumbnails are not displayed in maps bubble box |
---|
53 | | | | |
---|
54 | | | | * mantis bug:1950 |
---|
55 | | | | . Display map if a kml file is associated |
---|
56 | | | | |
---|
57 | | | | * mantis bug:1967 |
---|
58 | | | | . Maps are not displayed if user navigate with tag |
---|
59 | | | | |
---|
60 | | | | * mantis bug:1937 |
---|
61 | | | | . add possibility to add maps in descriptions |
---|
62 | | | | |
---|
63 | | | | |
---|
64 | | | | |
---|
65 | | | | |
---|
66 | | | | |
---|
67 | |
---|
68 | |
---|
69 | :: TO DO |
---|
70 | |
---|
71 | -------------------------------------------------------------------------------- |
---|
72 | |
---|
73 | :: NFO |
---|
74 | GMaps_root : common classe for admin and public classes |
---|
75 | GMaps_AIM : classe to manage plugin integration into plugin menu |
---|
76 | GMaps_AIP : classe to manage plugin admin pages |
---|
77 | GMaps_PIP : classe to manage plugin public pages |
---|
78 | |
---|
79 | -------------------------------------------------------------------------------- |
---|
80 | */ |
---|
81 | |
---|
82 | // pour faciliter le debug :o) |
---|
83 | //ini_set('error_reporting', E_ALL); |
---|
84 | //ini_set('display_errors', true); |
---|
85 | |
---|
86 | if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
87 | |
---|
88 | |
---|
89 | define('GMAPS_DIR' , basename(dirname(__FILE__))); |
---|
90 | define('GMAPS_PATH' , PHPWG_PLUGINS_PATH . GMAPS_DIR . '/'); |
---|
91 | |
---|
92 | include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/CommonPlugin.class.inc.php'); |
---|
93 | include_once('gmaps_version.inc.php'); // => Don't forget to update this file !! |
---|
94 | |
---|
95 | global $prefixeTable; |
---|
96 | |
---|
97 | if(defined('IN_ADMIN')) |
---|
98 | { |
---|
99 | //GMaps admin interface loaded and active only if in admin page |
---|
100 | include_once("gmaps_aim.class.inc.php"); |
---|
101 | $obj=new GMaps_AIM($prefixeTable, __FILE__); |
---|
102 | $obj->initEvents(); |
---|
103 | } |
---|
104 | else |
---|
105 | { |
---|
106 | if(CommonPlugin::checkGPCRelease(GMAPS_GPC_NEEDED)) |
---|
107 | { |
---|
108 | //GMaps public interface loaded and active only if in public page |
---|
109 | include_once("gmaps_pip.class.inc.php"); |
---|
110 | $obj=new GMaps_PIP($prefixeTable, __FILE__); |
---|
111 | } |
---|
112 | } |
---|
113 | |
---|
114 | set_plugin_data($plugin['id'], $obj); |
---|
115 | |
---|
116 | ?> |
---|