source: extensions/ContactForm/maintain.inc.php @ 18649

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

correct upgrade procedure

File size: 668 bytes
RevLine 
[6547]1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
[17945]4defined('CONTACT_FORM_ID') or define('CONTACT_FORM_ID', basename(dirname(__FILE__)));
5include_once(PHPWG_PLUGINS_PATH . CONTACT_FORM_ID . '/include/install.inc.php');
[6547]6
[17483]7function plugin_install() 
8{
[17658]9  contact_form_install();
10  define('contact_form_installed', true);
[6547]11}
12
[17483]13function plugin_activate()
14{
[17658]15  if (!defined('contact_form_installed'))
[17483]16  {
[17658]17    contact_form_install();
[17483]18  }
[6547]19}
20
[17483]21function plugin_uninstall() 
22{
[18649]23  global $prefixeTable;
24 
[17483]25  pwg_query('DELETE FROM `'. CONFIG_TABLE .'` WHERE param LIKE "ContactForm%" LIMIT 3;');
[18649]26  pwg_query('DROP TABLE IF EXISTS `'. $prefixeTable .'contact_form`;');
[6547]27}
28
[17483]29?>
Note: See TracBrowser for help on using the repository browser.