1 | <?php |
---|
2 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
3 | if (!defined('EDIT_CL_PATH')) |
---|
4 | define( 'EDIT_CL_PATH', PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' ); |
---|
5 | include_once(EDIT_CL_PATH.'edit_gmaps.inc.php'); |
---|
6 | |
---|
7 | $cl_edit_functions = new cl_edit_functions(); |
---|
8 | |
---|
9 | function plugin_install($plugin_id,$plugin_version,&$errors) |
---|
10 | { |
---|
11 | global $conf,$lang ; |
---|
12 | |
---|
13 | if (!isset($conf['gmaps_api_key'])) |
---|
14 | { |
---|
15 | $msg = sprintf(l10n('To install this plugin, you need to install %s before'),"RV Maps&Earth" ); |
---|
16 | if(is_array($errors)) |
---|
17 | { array_push($errors, "CANNOT INSTALL - $plugin_id <BR />".$msg); } |
---|
18 | else { $errors=Array( "CANNOT INSTALL - $plugin_id <BR />".$msg); } |
---|
19 | return ; |
---|
20 | } |
---|
21 | $colonnes=cl_edit_functions::Get_columns_of(IMAGES_TABLE); |
---|
22 | |
---|
23 | $colonnes=cl_edit_functions::Get_columns_of(IMAGES_TABLE); |
---|
24 | $key = array_search('alt', $colonnes[IMAGES_TABLE]); |
---|
25 | if (!$key){ |
---|
26 | $q = 'ALTER TABLE '.IMAGES_TABLE.' ADD COLUMN `alt` DOUBLE(9,6)'; |
---|
27 | pwg_query($q); |
---|
28 | } |
---|
29 | } |
---|
30 | |
---|
31 | function plugin_activate() |
---|
32 | { |
---|
33 | $dir_name = basename( dirname(__FILE__) ); |
---|
34 | |
---|
35 | } |
---|
36 | |
---|
37 | function plugin_deactivate() |
---|
38 | { |
---|
39 | |
---|
40 | cl_meta_invalidate_cache(); |
---|
41 | } |
---|
42 | |
---|
43 | function plugin_uninstall() |
---|
44 | { |
---|
45 | global $conf ; |
---|
46 | $q = 'ALTER TABLE '.IMAGES_TABLE.' DROP COLUMN `alt`'; |
---|
47 | pwg_query( $q ); |
---|
48 | |
---|
49 | if (!isset($conf['gmaps_api_key'])) |
---|
50 | { |
---|
51 | $q = 'ALTER TABLE '.IMAGES_TABLE.' DROP COLUMN `lon`'; |
---|
52 | pwg_query( $q ); |
---|
53 | $q = 'ALTER TABLE '.IMAGES_TABLE.' DROP COLUMN `lat`'; |
---|
54 | pwg_query( $q ); |
---|
55 | } |
---|
56 | } |
---|
57 | ?> |
---|