source: extensions/header_manager/maintain.inc.php @ 20461

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

actually we need a separated file (conflict with other plugins)

File size: 584 bytes
Line 
1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
4include_once(PHPWG_PLUGINS_PATH . 'header_manager/include/install.inc.php');
5 
6function plugin_install() 
7{
8  header_manager_install();
9 
10  define('header_manager_installed', true);
11}
12
13function plugin_activate()
14{
15  if (!defined('header_manager_installed'))
16  {
17    header_manager_install();
18  }
19}
20
21function plugin_uninstall() 
22{
23  global $prefixeTable;
24 
25  pwg_query('DROP TABLE `' .$prefixeTable . 'category_banner`;');
26  pwg_query('DELETE FROM `'. CONFIG_TABLE .'` WHERE param = "header_manager" LIMIT 1;');
27}
28
29?>
Note: See TracBrowser for help on using the repository browser.