Last change
on this file since 19780 was
17657,
checked in by mistic100, 12 years ago
|
consolidate upgrade process, remote filter_var function (PHP 5.2)
|
File size:
579 bytes
|
Line | |
---|
1 | <?php |
---|
2 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
3 | |
---|
4 | include_once(PHPWG_PLUGINS_PATH . 'UserCollections/include/install.inc.php'); |
---|
5 | |
---|
6 | function plugin_install() |
---|
7 | { |
---|
8 | user_collections_install(); |
---|
9 | |
---|
10 | define('user_collections_installed', true); |
---|
11 | } |
---|
12 | |
---|
13 | function plugin_activate() |
---|
14 | { |
---|
15 | if (!defined('user_collections_intalled')) |
---|
16 | { |
---|
17 | user_collections_install(); |
---|
18 | } |
---|
19 | } |
---|
20 | |
---|
21 | function plugin_uninstall() |
---|
22 | { |
---|
23 | global $prefixeTable; |
---|
24 | |
---|
25 | pwg_query('DROP TABLE IF EXISTS `'.$prefixeTable.'collections`;'); |
---|
26 | pwg_query('DROP TABLE IF EXISTS `'.$prefixeTable.'collection_images`;'); |
---|
27 | } |
---|
28 | |
---|
29 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.