|
Revision 3397, 1.2 KB
(checked in by grum, 4 years ago)
|
|
Add plugin MyPolls - this release is not published in PEM (functionnal but not tested yet...)
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* ----------------------------------------------------------------------------- |
|---|
| 3 | Plugin : MyPolls.2 |
|---|
| 4 | Author : Grum |
|---|
| 5 | email : grum@piwigo.org |
|---|
| 6 | website : http://photos.grum.dnsalias.com |
|---|
| 7 | |
|---|
| 8 | << May the Little SpaceFrog be with you ! >> |
|---|
| 9 | ------------------------------------------------------------------------------ |
|---|
| 10 | See main.inc.php for release information |
|---|
| 11 | |
|---|
| 12 | MyPolls_AIM : classe to manage plugin integration into plugin menu |
|---|
| 13 | |
|---|
| 14 | --------------------------------------------------------------------------- */ |
|---|
| 15 | |
|---|
| 16 | if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } |
|---|
| 17 | |
|---|
| 18 | include_once('mypolls_root.class.inc.php'); |
|---|
| 19 | |
|---|
| 20 | class MyPolls_AIM extends MyPolls_root |
|---|
| 21 | { |
|---|
| 22 | public function MyPolls_AIM($prefixeTable, $filelocation) |
|---|
| 23 | { |
|---|
| 24 | parent::__construct($prefixeTable, $filelocation); |
|---|
| 25 | } |
|---|
| 26 | |
|---|
| 27 | /* |
|---|
| 28 | initialize events call for the plugin |
|---|
| 29 | */ |
|---|
| 30 | public function init_events() |
|---|
| 31 | { |
|---|
| 32 | parent::init_events(); |
|---|
| 33 | add_event_handler('get_admin_plugin_menu_links', array(&$this, 'plugin_admin_menu') ); |
|---|
| 34 | } |
|---|
| 35 | |
|---|
| 36 | /* --------------------------------------------------------------------------- |
|---|
| 37 | Function needed for plugin activation |
|---|
| 38 | --------------------------------------------------------------------------- */ |
|---|
| 39 | |
|---|
| 40 | } // MyPolls_AIM class |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | ?> |
|---|