source: extensions/linked_pages/maintain.inc.php @ 17925

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

check AP restrictions and user.forbidden_cetegories

File size: 564 bytes
Line 
1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
4defined('LINKEDPAGES_ID') or define('LINKEDPAGES_ID', basename(dirname(__FILE__)));
5include_once(PHPWG_PLUGINS_PATH . LINKEDPAGES_ID '/include/install.inc.php');
6
7
8function plugin_install() 
9{
10  linked_pages_install();
11  define('linked_pages_installed', true);
12}
13
14
15function plugin_activate()
16{
17  if (!defined('linked_pages_installed'))
18  {
19    linked_pages_install();
20  }
21}
22
23
24function plugin_uninstall() 
25{
26  global $prefixeTable;
27 
28  pwg_query('DROP TABLE `'.$prefixeTable.'linked_pages`;');
29}
30
31?>
Note: See TracBrowser for help on using the repository browser.