Last change
on this file since 30696 was
15374,
checked in by grum, 12 years ago
|
feature:2643 - Compatibility with Piwigo 2.4
|
-
Property svn:executable set to
*
|
File size:
806 bytes
|
Rev | Line | |
---|
[15374] | 1 | <?php |
---|
| 2 | /* ----------------------------------------------------------------------------- |
---|
| 3 | Plugin : UserStat |
---|
| 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 | --------------------------------------------------------------------------- */ |
---|
| 13 | |
---|
| 14 | if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } |
---|
| 15 | |
---|
| 16 | include(USERSTAT_PATH."userstat_aip.class.inc.php"); |
---|
| 17 | |
---|
| 18 | global $prefixeTable; |
---|
| 19 | |
---|
| 20 | load_language('plugin.lang', USERSTAT_PATH); |
---|
| 21 | |
---|
| 22 | $main_plugin_object = get_plugin_data($plugin_id); |
---|
| 23 | |
---|
| 24 | $plugin_ai = new UserStat_AIP($prefixeTable, $main_plugin_object->getFileLocation()); |
---|
| 25 | $plugin_ai->manage(); |
---|
| 26 | |
---|
| 27 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.