1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: EStat |
---|
4 | Version: 0.1.0b |
---|
5 | Description: Extended Statistics |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid= |
---|
7 | Author: grum@piwigo.org |
---|
8 | Author URI: http://www.grum.fr |
---|
9 | */ |
---|
10 | |
---|
11 | /* |
---|
12 | -------------------------------------------------------------------------------- |
---|
13 | Author : Grum |
---|
14 | email : grum@piwigo.com |
---|
15 | website : http://www.grum.fr |
---|
16 | |
---|
17 | << May the Little SpaceFrog be with you ! >> |
---|
18 | -------------------------------------------------------------------------------- |
---|
19 | |
---|
20 | :: HISTORY |
---|
21 | |
---|
22 | | release | date | |
---|
23 | | 0.1.0b | 2010-08-22 | * start coding |
---|
24 | | | | . dev/beta release |
---|
25 | | | | |
---|
26 | | | | |
---|
27 | | | | |
---|
28 | | | | |
---|
29 | | | | |
---|
30 | | | | |
---|
31 | | | | |
---|
32 | | | | |
---|
33 | | | | |
---|
34 | | | | |
---|
35 | |
---|
36 | |
---|
37 | :: TO DO |
---|
38 | |
---|
39 | -------------------------------------------------------------------------------- |
---|
40 | |
---|
41 | :: NFO |
---|
42 | EStat_root : common classe for admin and public classes |
---|
43 | EStat_AIM : classe to manage plugin integration into plugin menu |
---|
44 | EStat_AIP : classe to manage plugin admin pages |
---|
45 | EStat_PIP : classe to manage plugin public pages |
---|
46 | |
---|
47 | -------------------------------------------------------------------------------- |
---|
48 | */ |
---|
49 | |
---|
50 | // for debug, if needed :-) |
---|
51 | // ini_set('error_reporting', E_ALL); |
---|
52 | // ini_set('display_errors', true); |
---|
53 | |
---|
54 | if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
55 | |
---|
56 | |
---|
57 | define('ESTAT_DIR' , basename(dirname(__FILE__))); |
---|
58 | define('ESTAT_PATH' , PHPWG_PLUGINS_PATH . ESTAT_DIR . '/'); |
---|
59 | define('ESTAT_LIB' , ESTAT_PATH.'lib/'); |
---|
60 | |
---|
61 | include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/CommonPlugin.class.inc.php'); |
---|
62 | include_once('estat_version.inc.php'); // => Don't forget to update this file !! |
---|
63 | |
---|
64 | global $prefixeTable; |
---|
65 | |
---|
66 | if(!defined('AJAX_CALL')) |
---|
67 | { |
---|
68 | if(defined('IN_ADMIN')) |
---|
69 | { |
---|
70 | //EStat admin interface loaded and active only if in admin page |
---|
71 | include_once("estat_aim.class.inc.php"); |
---|
72 | $obj=new EStat_AIM($prefixeTable, __FILE__); |
---|
73 | } |
---|
74 | else |
---|
75 | { |
---|
76 | if(CommonPlugin::checkGPCRelease(ESTAT_GPC_NEEDED)) |
---|
77 | { |
---|
78 | //EStat public interface loaded and active only if in public page |
---|
79 | include_once("estat_pip.class.inc.php"); |
---|
80 | $obj=new EStat_PIP($prefixeTable, __FILE__); |
---|
81 | } |
---|
82 | } |
---|
83 | set_plugin_data($plugin['id'], $obj); |
---|
84 | } |
---|
85 | |
---|
86 | ?> |
---|