source: extensions/Comments_on_Albums/maintain.inc.php @ 15033

Last change on this file since 15033 was 14528, checked in by mistic100, 12 years ago

update for 2.4
delete useless admin page
now compatible with RV Thumb Scroller

File size: 935 bytes
Line 
1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
4function plugin_install() 
5{
6  global $prefixeTable;
7
8  pwg_query("
9CREATE 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  `content` longtext,
16  `validated` enum('true','false') NOT NULL DEFAULT 'false',
17  `validation_date` datetime DEFAULT NULL,
18  PRIMARY KEY (`id`)
19) DEFAULT CHARSET=utf8
20;");
21}
22
23function plugin_activate()
24{
25  global $conf;
26 
27  if (isset($conf['comments_on_albums']))
28  {
29    pwg_query('DELETE FROM '.CONFIG_TABLE.' WHERE param="comments_on_albums" LIMIT 1;');
30  }
31}
32
33function plugin_uninstall() 
34{
35  global $prefixeTable;
36
37  pwg_query("DROP TABLE `" . $prefixeTable . "comments_categories`;");
38}
39?>
Note: See TracBrowser for help on using the repository browser.