> ------------------------------------------------------------------------------ See main.inc.php for release information GPC_Install : classe to manage plugin install --------------------------------------------------------------------------- */ if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); include_once('gpc_version.inc.php'); // => Don't forget to update this file !! include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/CommonPlugin.class.inc.php'); include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCCore.class.inc.php'); include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCRequestBuilder.class.inc.php'); /* PGC class for install process */ class GPC_Install extends CommonPlugin { private $tablef; public function __construct($prefixeTable, $filelocation) { $this->setPluginName("Grum Plugin Classes"); $this->setPluginNameFiles("gpc"); parent::__construct($prefixeTable, $filelocation); GPCRequestBuilder::init($prefixeTable, $this->getPluginNameFiles()); } public function __destruct() { parent::__destruct(); } /* function for installation process return true if install process is ok, otherwise false */ public function install() { $this->initConfig(); $this->loadConfig(); $this->config['installed']=GPC_VERSION2; $this->saveConfig(); $result=GPCRequestBuilder::createTables(); return($result); } /* function for uninstall process */ public function uninstall() { $registeredPlugin=GPCCore::getRegistered(); if(count($registeredPlugin)>0) { return(l10n("Some plugins are dependent on Grum Plugin Classes: before uninstall, you must first uninstall the plugins dependent")); } else { $this->deleteConfig(); GPCCore::deleteConfig(); GPCRequestBuilder::deleteConfig(); $result=GPCRequestBuilder::deleteTables(); return($result); } } public function activate() { global $template, $user; $this->initConfig(); $this->loadConfig(); /* * if there is no version information available, assume the previous * installed release of the plugin is 3.1.0 */ if(!isset($this->config['installed'])) $this->config['installed']='03.01.00'; /* switch($this->config['installed']) { case '03.01.00': GPCRequestBuilder::updateTables($this->config['installed']); break; } */ GPCRequestBuilder::updateTables($this->config['installed']); $this->config['installed']=GPC_VERSION2; //update the installed release number $this->saveConfig(); return(true); } public function deactivate() { } } //class ?>