> * * ----------------------------------------------------------------------------- * * See main.inc.php for release information * * UserStat_install : classe to manage plugin install * --------------------------------------------------------------------------- */ if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/CommonPlugin.class.inc.php'); class UserStat_root extends CommonPlugin { public function __construct($prefixeTable, $filelocation) { $this->setPluginName("UserStat"); $this->setPluginNameFiles("userstat"); parent::__construct($prefixeTable, $filelocation); } /* --------------------------------------------------------------------------- common AIP & PIP functions --------------------------------------------------------------------------- */ public function loadCSS() { parent::loadCSS(); GPCCore::addHeaderCSS('userstat.css', 'plugins/'.$this->getDirectory().'/'.$this->getPluginNameFiles().".css"); } } ?>