Last change
on this file since 16567 was
16015,
checked in by grum, 12 years ago
|
feature:2643- compatibility with Piwigo 2.4
|
File size:
1.4 KB
|
Rev | Line | |
---|
[10344] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | * ----------------------------------------------------------------------------- |
---|
| 4 | * Plugin Name: UserStat |
---|
| 5 | * ----------------------------------------------------------------------------- |
---|
| 6 | * Author : Grum |
---|
| 7 | * email : grum@piwigo.org |
---|
| 8 | * website : http://photos.grum.fr |
---|
| 9 | * PWG user : http://forum.piwigo.org/profile.php?id=3706 |
---|
| 10 | * |
---|
| 11 | * << May the Little SpaceFrog be with you ! >> |
---|
| 12 | * |
---|
| 13 | * ----------------------------------------------------------------------------- |
---|
| 14 | * |
---|
| 15 | * See main.inc.php for release information |
---|
| 16 | * |
---|
| 17 | * UserStat_install : classe to manage plugin install |
---|
| 18 | * --------------------------------------------------------------------------- |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } |
---|
| 22 | |
---|
| 23 | include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/CommonPlugin.class.inc.php'); |
---|
| 24 | |
---|
| 25 | class UserStat_root extends CommonPlugin |
---|
| 26 | { |
---|
| 27 | public function __construct($prefixeTable, $filelocation) |
---|
| 28 | { |
---|
| 29 | $this->setPluginName("UserStat"); |
---|
| 30 | $this->setPluginNameFiles("userstat"); |
---|
| 31 | parent::__construct($prefixeTable, $filelocation); |
---|
| 32 | } |
---|
| 33 | |
---|
| 34 | /* --------------------------------------------------------------------------- |
---|
| 35 | common AIP & PIP functions |
---|
| 36 | --------------------------------------------------------------------------- */ |
---|
| 37 | |
---|
[16015] | 38 | public function loadCSS() |
---|
[10344] | 39 | { |
---|
[16015] | 40 | parent::loadCSS(); |
---|
| 41 | GPCCore::addHeaderCSS('userstat.css', 'plugins/'.$this->getDirectory().'/'.$this->getPluginNameFiles().".css"); |
---|
[10344] | 42 | } |
---|
| 43 | } |
---|
| 44 | |
---|
| 45 | |
---|
| 46 | |
---|
| 47 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.