source: extensions/EasyCaptcha/maintain.inc.php @ 24215

Last change on this file since 24215 was 24215, checked in by mistic100, 11 years ago

add extension EasyCaptcha

File size: 542 bytes
Line 
1<?php
2defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
3
4defined('EASYCAPTCHA_ID') or define('EASYCAPTCHA_ID', basename(dirname(__FILE__)));
5include_once(PHPWG_PLUGINS_PATH . EASYCAPTCHA_ID . '/include/install.inc.php');
6
7function plugin_install()
8{
9  easycaptcha_install();
10  define('easycaptcha_installed', true);
11}
12
13function plugin_activate()
14{
15  if (!defined('easycaptcha_installed'))
16  {
17    easycaptcha_install();
18  }
19}
20
21function plugin_uninstall()
22{
23  pwg_query('DELETE FROM '.CONFIG_TABLE.' WHERE param="EasyCaptcha" LIMIT 1');
24}
Note: See TracBrowser for help on using the repository browser.