source: extensions/GThumb/maintain.inc.php @ 12678

Last change on this file since 12678 was 12678, checked in by patdenice, 12 years ago

Add GThumb+ plugin

File size: 563 bytes
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5function plugin_install()
6{
7  include(dirname(__FILE__).'/config_default.inc.php');
8
9  $query = '
10INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment)
11VALUES ("GThumb" , "'.addslashes(serialize($config_default)).'" , "GThumb plugin parameters");';
12  pwg_query($query);
13}
14
15function plugin_uninstall()
16{
17  include_once(dirname(__FILE__).'/functions.inc.php');
18  gtdeltree(GTHUMB_CACHE_DIR);
19 
20  $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="GThumb" LIMIT 1;';
21  pwg_query($query);
22}
23
24?>
Note: See TracBrowser for help on using the repository browser.