Changeset 10984 for extensions/Comments_on_Albums/maintain.inc.php
- Timestamp:
- May 22, 2011, 12:34:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/Comments_on_Albums/maintain.inc.php
r9766 r10984 4 4 // Default configuration 5 5 define('default_config', serialize(array( 6 7 6 'icon_color' => 'outline_ff3363.png', 7 'icon_color_over' => 'outline_ff7700.png', 8 8 ))); 9 9 10 10 // Installation 11 11 function plugin_install() { 12 12 global $prefixeTable; 13 13 14 15 16 17 18 19 20 21 22 23 24 25 26 14 pwg_query("CREATE TABLE `" . $prefixeTable . "comments_categories` ( 15 `id` int(11) unsigned NOT NULL AUTO_INCREMENT, 16 `category_id` mediumint(8) unsigned NOT NULL DEFAULT '0', 17 `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 18 `author` varchar(255) DEFAULT NULL, 19 `author_id` smallint(5) DEFAULT NULL, 20 `content` longtext, 21 `validated` enum('true','false') NOT NULL DEFAULT 'false', 22 `validation_date` datetime DEFAULT NULL, 23 PRIMARY KEY (`id`) 24 ) DEFAULT CHARSET=utf8;"); 25 26 pwg_query("INSERT INTO " . CONFIG_TABLE . "(param,value,comment) VALUES('comments_on_albums', '" . default_config . "', 'Parametres du plugin Comments on Albums');"); 27 27 } 28 28 29 29 // Uninstallation 30 30 function plugin_uninstall() { 31 31 global $prefixeTable; 32 32 33 34 33 pwg_query("DROP TABLE `" . $prefixeTable . "comments_categories`;"); 34 pwg_query("DELETE FROM " . CONFIG_TABLE . " WHERE `param` = 'comments_on_albums';"); 35 35 } 36 36 ?>
Note: See TracChangeset
for help on using the changeset viewer.