Rev | Line | |
---|
[3394] | 1 | <?php |
---|
| 2 | /* ----------------------------------------------------------------------------- |
---|
| 3 | Plugin : AStat.2 |
---|
| 4 | Author : Grum |
---|
| 5 | email : grum@piwigo.org |
---|
| 6 | website : http://photos.grum.fr |
---|
| 7 | |
---|
| 8 | << May the Little SpaceFrog be with you ! >> |
---|
| 9 | ------------------------------------------------------------------------------ |
---|
| 10 | See main.inc.php for release information |
---|
| 11 | |
---|
| 12 | AStat_AIM : classe to manage plugin integration into plugin menu |
---|
| 13 | |
---|
| 14 | --------------------------------------------------------------------------- */ |
---|
| 15 | |
---|
| 16 | if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } |
---|
| 17 | |
---|
[10264] | 18 | include_once('astat_root.class.inc.php'); |
---|
[5546] | 19 | include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCCss.class.inc.php'); |
---|
[3394] | 20 | |
---|
[10264] | 21 | class AStat_AIM extends AStat_root |
---|
[3706] | 22 | { |
---|
[3394] | 23 | protected $css = null; |
---|
| 24 | |
---|
[10264] | 25 | function __construct($prefixeTable, $filelocation) |
---|
[3394] | 26 | { |
---|
| 27 | parent::__construct($prefixeTable, $filelocation); |
---|
| 28 | } |
---|
| 29 | |
---|
| 30 | /* |
---|
| 31 | initialize events call for the plugin |
---|
| 32 | */ |
---|
[5546] | 33 | function initEvents() |
---|
[3394] | 34 | { |
---|
[5546] | 35 | add_event_handler('get_admin_plugin_menu_links', array(&$this, 'pluginAdminMenu') ); |
---|
[3394] | 36 | } |
---|
| 37 | |
---|
| 38 | } // AStat_Plugin class |
---|
| 39 | |
---|
| 40 | |
---|
| 41 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.