1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: UserStat |
---|
4 | Version: 1.1.1 |
---|
5 | Description: Statistiques utilisateurs / Users statistics |
---|
6 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=321 |
---|
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 | | 1.0.0 | 2009/11/15 | * first public release |
---|
26 | | | | |
---|
27 | | 1.1.0 | 2010/03/28 | * compatibility with Piwigo 2.1 |
---|
28 | | | | |
---|
29 | | 1.1.1 | 2010/03/28 | * little bug on the template (call of an undefined var) |
---|
30 | | | | * Add new languages |
---|
31 | | | | . es_ES |
---|
32 | | | | . hu_HU |
---|
33 | | | | . it_IT |
---|
34 | | | | |
---|
35 | | | | |
---|
36 | | | | |
---|
37 | | | | |
---|
38 | | | | |
---|
39 | | | | |
---|
40 | |
---|
41 | |
---|
42 | |
---|
43 | :: TO DO |
---|
44 | |
---|
45 | -------------------------------------------------------------------------------- |
---|
46 | |
---|
47 | :: NFO |
---|
48 | UserStat_AIM : classe to manage plugin integration into plugin menu |
---|
49 | UserStat_AIP : classe to manage plugin admin pages |
---|
50 | |
---|
51 | -------------------------------------------------------------------------------- |
---|
52 | */ |
---|
53 | |
---|
54 | // pour faciliter le debug :o) |
---|
55 | // ini_set('error_reporting', E_ALL); |
---|
56 | // ini_set('display_errors', true); |
---|
57 | |
---|
58 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
59 | |
---|
60 | define('USERSTAT_DIR' , basename(dirname(__FILE__))); |
---|
61 | define('USERSTAT_PATH' , PHPWG_PLUGINS_PATH . USERSTAT_DIR . '/'); |
---|
62 | |
---|
63 | include_once('userstat_version.inc.php'); // => Don't forget to update this file !! |
---|
64 | |
---|
65 | global $prefixeTable; |
---|
66 | |
---|
67 | //UserStat loaded and active only if in admin page |
---|
68 | if(basename($_SERVER["PHP_SELF"])=='admin.php') |
---|
69 | { |
---|
70 | include_once("userstat_aim.class.inc.php"); |
---|
71 | |
---|
72 | $obj = new UserStat_AIM($prefixeTable, __FILE__); |
---|
73 | $obj->initEvents(); |
---|
74 | set_plugin_data($plugin['id'], $obj); |
---|
75 | } |
---|
76 | |
---|
77 | ?> |
---|