|
Revision 3397, 0.8 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 | --------------------------------------------------------------------------- */ |
|---|
| 13 | |
|---|
| 14 | if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } |
|---|
| 15 | |
|---|
| 16 | include(MYPOLLS_PATH."mypolls_aip.class.inc.php"); |
|---|
| 17 | |
|---|
| 18 | global $prefixeTable; |
|---|
| 19 | |
|---|
| 20 | load_language('plugin.lang', MYPOLLS_PATH); |
|---|
| 21 | |
|---|
| 22 | $main_plugin_object = get_plugin_data($plugin_id); |
|---|
| 23 | |
|---|
| 24 | $plugin_aip = new MyPolls_AIP($prefixeTable, $main_plugin_object->get_filelocation()); |
|---|
| 25 | $plugin_aip->manage(); |
|---|
| 26 | ?> |
|---|