source: extensions/AStat/astat_aim.class.inc.php @ 27153

Last change on this file since 27153 was 16009, checked in by grum, 12 years ago

feature:2636- compatibility with Piwigo 2.4

  • Property svn:executable set to *
File size: 1.0 KB
Line 
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
16if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); }
17
18include_once('astat_root.class.inc.php');
19
20class AStat_AIM extends AStat_root
21{
22  public function __construct($prefixeTable, $filelocation)
23  {
24    parent::__construct($prefixeTable, $filelocation);
25  }
26
27  /*
28    initialize events call for the plugin
29  */
30  public function initEvents()
31  {
32    parent::initEvents();
33    add_event_handler('get_admin_plugin_menu_links', array(&$this, 'pluginAdminMenu') );
34  }
35
36} // AStat_Plugin class
37
38
39?>
Note: See TracBrowser for help on using the repository browser.