1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: AStat.2 |
---|
4 | Version: 2.2.2 |
---|
5 | Description: Statistiques avancées / Advanced statistics |
---|
6 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=172 |
---|
7 | Author: grum@piwigo.org |
---|
8 | Author URI: http://photos.grum.fr/ |
---|
9 | */ |
---|
10 | |
---|
11 | /* |
---|
12 | -------------------------------------------------------------------------------- |
---|
13 | Author : Grum |
---|
14 | email : grum@piwigo.org |
---|
15 | website : http://photos.grum.fr |
---|
16 | PWG user : http://forum.phpwebgallery.net/profile.php?id=3706 |
---|
17 | |
---|
18 | << May the Little SpaceFrog be with you ! >> |
---|
19 | -------------------------------------------------------------------------------- |
---|
20 | |
---|
21 | :: HISTORY |
---|
22 | |
---|
23 | |
---|
24 | | release | date | |
---|
25 | | 2.0.0 | 2007/05/07 | * release for piwigo 2.0 |
---|
26 | | | | |
---|
27 | | 2.0.1 | 2008/03/01 | * bug corrected (can't open file because plugin directory |
---|
28 | | | | was hardcoded...) |
---|
29 | | | | |
---|
30 | | 2.0.2 | 2008/03/09 | * bug referenced |
---|
31 | | | | english forum : http://piwigo.org/forum/viewtopic.php?pid=105990#p105990 |
---|
32 | | | | french forum : http://fr.piwigo.org/forum/viewtopic.php?pid=107205#p107205 |
---|
33 | | | | SQL request for stat by categories works with mySQL 4.1.22 and not with mySQL 5 |
---|
34 | | | | |
---|
35 | | 2.0.3 | 2008/03/28 | * bug referenced |
---|
36 | | | | french forum : http://fr.piwigo.org/forum/viewtopic.php?pid=107236#p107236 |
---|
37 | | | | SQL request for stat by categories works with mySQL 4.1.22 and not with mySQL 5 |
---|
38 | | | | |
---|
39 | | 2.0.4 | 2009/05/21 | * bug on tools |
---|
40 | | | | it was not possible to use tools to manage deleted items |
---|
41 | | | | |
---|
42 | | 2.0.5 | 2009/07/07 | * bug in code - invalid character on line 2194 |
---|
43 | | | | |
---|
44 | | 2.1.0 | 2009/07/28 | * add a blacklist for IP and use it for stats |
---|
45 | | | | * new tools |
---|
46 | | | | - possibility to purge history on blacklisted IP address |
---|
47 | | | | - use of jQuery datepicker for purge date |
---|
48 | | | | |
---|
49 | | 2.1.1 | 2009/11/15 | * bug on tools (cf. bug #1242 in mantis) |
---|
50 | | | | it was impossible to purge items in history due to an invalid regexp in the javascript |
---|
51 | | | | |
---|
52 | | 2.2.0 | 2010/03/28 | * release for compatibility with Piwigo 2.1 |
---|
53 | | | | * mantis: bug 1192 |
---|
54 | | | | Constant already defined when deactivating the plugin |
---|
55 | | | | * mantis: bug 1344 |
---|
56 | | | | In tools, it's allowed to do purge only if checkbox is not checked |
---|
57 | | | | |
---|
58 | | 2.2.1 | 2010/04/11 | * Fixed a minor bug in the display |
---|
59 | | | | * add languages: |
---|
60 | | | | . it_IT |
---|
61 | | | | |
---|
62 | | 2.2.2 | 2010/07/24 | * mantis: bug 1774 |
---|
63 | | | | Stat by categories doesn't work when IP filter is activated |
---|
64 | | | | |
---|
65 | | | | |
---|
66 | | | | |
---|
67 | | | | |
---|
68 | | | | |
---|
69 | | | | |
---|
70 | | | | |
---|
71 | |
---|
72 | |
---|
73 | |
---|
74 | :: TO DO |
---|
75 | |
---|
76 | -------------------------------------------------------------------------------- |
---|
77 | |
---|
78 | :: NFO |
---|
79 | AStat_AIM : classe to manage plugin integration into plugin menu |
---|
80 | AStat_AIP : classe to manage plugin admin pages |
---|
81 | |
---|
82 | -------------------------------------------------------------------------------- |
---|
83 | */ |
---|
84 | |
---|
85 | // pour faciliter le debug :o) |
---|
86 | // ini_set('error_reporting', E_ALL); |
---|
87 | // ini_set('display_errors', true); |
---|
88 | |
---|
89 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
90 | |
---|
91 | define('ASTAT_DIR' , basename(dirname(__FILE__))); |
---|
92 | define('ASTAT_PATH' , PHPWG_PLUGINS_PATH . ASTAT_DIR . '/'); |
---|
93 | |
---|
94 | include_once('astat_version.inc.php'); // => Don't forget to update this file !! |
---|
95 | |
---|
96 | global $prefixeTable; |
---|
97 | |
---|
98 | //AStat loaded and active only if in admin page |
---|
99 | if(basename($_SERVER["PHP_SELF"])=='admin.php') |
---|
100 | { |
---|
101 | include_once("astat_aim.class.inc.php"); |
---|
102 | |
---|
103 | $obj = new AStat_AIM($prefixeTable, __FILE__); |
---|
104 | $obj->initEvents(); |
---|
105 | set_plugin_data($plugin['id'], $obj); |
---|
106 | } |
---|
107 | |
---|
108 | ?> |
---|