1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Meta Open Graph plugin for Piwigo by TEMMII | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2020-2022 ddtddt http://temmii.com/piwigo/ | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | This program is free software; you can redistribute it and/or modify | |
---|
8 | // | it under the terms of the GNU General Public License as published by | |
---|
9 | // | the Free Software Foundation | |
---|
10 | // | | |
---|
11 | // | This program is distributed in the hope that it will be useful, but | |
---|
12 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
13 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
14 | // | General Public License for more details. | |
---|
15 | // | | |
---|
16 | // | You should have received a copy of the GNU General Public License | |
---|
17 | // | along with this program; if not, write to the Free Software | |
---|
18 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
19 | // | USA. | |
---|
20 | // +-----------------------------------------------------------------------+ |
---|
21 | |
---|
22 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
23 | |
---|
24 | class meta_og_maintain extends PluginMaintain |
---|
25 | { |
---|
26 | function install($plugin_version, &$errors=array()) |
---|
27 | { |
---|
28 | global $conf, $prefixeTable, $user; |
---|
29 | $q = 'CREATE TABLE ' . $prefixeTable . 'metaog( |
---|
30 | id SMALLINT( 5 ) UNSIGNED NOT NULL AUTO_INCREMENT, |
---|
31 | type SMALLINT( 5 ) UNSIGNED NOT NULL, |
---|
32 | idobj SMALLINT( 5 ) UNSIGNED NOT NULL default "0", |
---|
33 | page VARCHAR( 255 ) , |
---|
34 | metaogtitle VARCHAR( 255 ) NOT NULL , |
---|
35 | metaogdescription lONGTEXT NOT NULL , |
---|
36 | metaogimage lONGTEXT NOT NULL , |
---|
37 | PRIMARY KEY (id))DEFAULT CHARSET=utf8;'; |
---|
38 | pwg_query($q); |
---|
39 | |
---|
40 | if ($user['theme'] == 'bootstrapdefault'||$user['theme'] == 'bootstrap_darkroom'){ |
---|
41 | conf_update_param('mogsize','cu'); |
---|
42 | }else if ($user['theme'] == 'modus'){ |
---|
43 | conf_update_param('mogsize','2s'); |
---|
44 | }else{ |
---|
45 | conf_update_param('mogsize','th'); |
---|
46 | } |
---|
47 | |
---|
48 | conf_update_param('fb:app_id',''); |
---|
49 | conf_update_param('moglocal',''); |
---|
50 | conf_update_param('mogsitename',''); |
---|
51 | conf_update_param('mogtwcard',''); |
---|
52 | conf_update_param('mogtwsite',''); |
---|
53 | conf_update_param('mogtwcreator',''); |
---|
54 | conf_update_param('mogshowpa','1'); |
---|
55 | } |
---|
56 | |
---|
57 | function uninstall() |
---|
58 | { |
---|
59 | |
---|
60 | global $prefixeTable; |
---|
61 | |
---|
62 | $q = 'DROP TABLE ' . $prefixeTable . 'metaog;'; |
---|
63 | pwg_query($q); |
---|
64 | |
---|
65 | conf_delete_param('mogsize'); |
---|
66 | conf_delete_param('fb:app_id'); |
---|
67 | conf_delete_param('moglocal'); |
---|
68 | conf_delete_param('mogsitename'); |
---|
69 | conf_delete_param('mogtwcard',''); |
---|
70 | conf_delete_param('mogtwsite',''); |
---|
71 | conf_delete_param('mogtwcreator',''); |
---|
72 | conf_delete_param('mogshowpa',''); |
---|
73 | conf_delete_param('moglista',''); |
---|
74 | } |
---|
75 | } |
---|