> * * ----------------------------------------------------------------------------- * * See main.inc.php for release information * * AIPRealse class => display warning if GPC release is not up to date * * ----------------------------------------------------------------------------- */ if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); include_once('amd_root.class.inc.php'); class AMD_AIPRelease extends AMD_root { public function __construct($prefixeTable, $filelocation) { parent::__construct($prefixeTable, $filelocation); $this->loadConfig(); $this->initEvents(); } /* display administration page */ public function manage() { global $template; GPCCore::setTemplateToken(); $template->set_filename('plugin_admin_content', dirname($this->getFileLocation())."/admin/amd_admin.tpl"); $pluginInfo=array( 'AMD_VERSION' => "".$this->getPluginName()." ".l10n('g003_version').AMD_VERSION, 'PATH' => AMD_PATH ); $template->assign('plugin', $pluginInfo); $template->assign('AMD_BODY_PAGE', '

'.l10n('g003_gpc_not_up_to_date',AMD_GPC_NEEDED, GPC_VERSION).'

'); $template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content'); } } //class ?>