1 | <?php |
---|
2 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
3 | |
---|
4 | function plugin_install() |
---|
5 | { |
---|
6 | global $prefixeTable; |
---|
7 | |
---|
8 | pwg_query(" |
---|
9 | CREATE TABLE `" . $prefixeTable . "comments_categories` ( |
---|
10 | `id` int(11) unsigned NOT NULL AUTO_INCREMENT, |
---|
11 | `category_id` mediumint(8) unsigned NOT NULL DEFAULT '0', |
---|
12 | `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', |
---|
13 | `author` varchar(255) DEFAULT NULL, |
---|
14 | `author_id` smallint(5) DEFAULT NULL, |
---|
15 | `anonymous_id` varchar(45) NOT NULL, |
---|
16 | `content` longtext, |
---|
17 | `validated` enum('true','false') NOT NULL DEFAULT 'false', |
---|
18 | `validation_date` datetime DEFAULT NULL, |
---|
19 | PRIMARY KEY (`id`) |
---|
20 | ) DEFAULT CHARSET=utf8 |
---|
21 | ;"); |
---|
22 | } |
---|
23 | |
---|
24 | function plugin_activate() |
---|
25 | { |
---|
26 | global $conf, $prefixeTable; |
---|
27 | |
---|
28 | if (isset($conf['comments_on_albums'])) |
---|
29 | { |
---|
30 | pwg_query('DELETE FROM '.CONFIG_TABLE.' WHERE param="comments_on_albums" LIMIT 1;'); |
---|
31 | } |
---|
32 | |
---|
33 | $query = 'SHOW COLUMNS FROM `' . $prefixeTable . 'comments_categories`;'; |
---|
34 | $columns = hash_from_query($query, 'Field'); |
---|
35 | if (!isset($columns['anonymous_id'])) |
---|
36 | { |
---|
37 | pwg_query('ALTER TABLE `' . $prefixeTable . 'comments_categories` ADD `anonymous_id` VARCHAR( 45 ) DEFAULT NULL;'); |
---|
38 | } |
---|
39 | } |
---|
40 | |
---|
41 | function plugin_uninstall() |
---|
42 | { |
---|
43 | global $prefixeTable; |
---|
44 | |
---|
45 | pwg_query("DROP TABLE `" . $prefixeTable . "comments_categories`;"); |
---|
46 | } |
---|
47 | ?> |
---|