> * * ----------------------------------------------------------------------------- * * See main.inc.php for release information * * AIPRelease class => display warning if GPC release is not up to date * * ----------------------------------------------------------------------------- */ if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); include_once('gmaps_root.class.inc.php'); class GMaps_AIPRelease extends GMaps_root { public function __construct($prefixeTable, $filelocation) { parent::__construct($prefixeTable, $filelocation); $this->loadConfig(); $this->initEvents(); } /* display administration page */ public function manage() { global $template; $template->set_filename('plugin_admin_content', dirname($this->getFileLocation())."/admin/gmaps_admin.tpl"); $pluginInfo=array( 'GMAPS_VERSION' => "".$this->getPluginName()." ".l10n('gmaps_release').GMAPS_VERSION, 'PATH' => GMAPS_PATH ); $template->assign('plugin', $pluginInfo); $template->assign('GMAPS_BODY_PAGE', '

'.sprintf(l10n('gmaps_gpc_not_up_to_date'),GMAPS_GPC_NEEDED, GPC_VERSION).'

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