1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Grum Plugins Classes.3 |
---|
4 | Version: 3.1.0 |
---|
5 | Description: Collection de classes partagées entre mes plugins (existants, ou à venir) / Partaged classes between my plugins (actuals or futures) |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=199 |
---|
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 | |
---|
17 | << May the Little SpaceFrog be with you ! >> |
---|
18 | -------------------------------------------------------------------------------- |
---|
19 | |
---|
20 | :: HISTORY |
---|
21 | |
---|
22 | | release | date | |
---|
23 | | 2.0.0 | 2008/07/20 | * convert classes for piwigo 2.0 |
---|
24 | | | | |
---|
25 | | 2.0.1 | 2008/12/28 | * convert classe tables.class.inc to php5 |
---|
26 | | | | |
---|
27 | | 2.0.2 | 2009/04/26 | * add setOptions/getOptions for GPCPagesNavigation class |
---|
28 | | | | * add option to set first/prev/next/last textes |
---|
29 | | | | |
---|
30 | | 2.0.3 | 2009/07/24 | * modify common_plugin class config loader (r2.0.1) |
---|
31 | | | | |
---|
32 | | 2.0.4 | 2009/11/29 | * modify users class |
---|
33 | | | | |
---|
34 | | 3.0.0 | 2010/03/28 | * Uses piwigo pwg_db_* functions instead of mysql_* functions |
---|
35 | | | | * update classes & functions names |
---|
36 | | | | * include the JpegMetaData class |
---|
37 | | | | |
---|
38 | | 3.0.1 | 2010/04/11 | * little bug on the template (call of an undefined var) |
---|
39 | | | | * Add new languages |
---|
40 | | | | . es_ES |
---|
41 | | | | . hu_HU |
---|
42 | | | | . it_IT |
---|
43 | | | | |
---|
44 | | 3.1.0 | 2010/04/24 | * add the GPCTabSheet class |
---|
45 | | | | * update the GPCCore class |
---|
46 | | | | * Add new languages |
---|
47 | | | | . nl_NL |
---|
48 | | | | . de_DE |
---|
49 | | | | |
---|
50 | | | | |
---|
51 | | | | |
---|
52 | | | | |
---|
53 | | | | |
---|
54 | | | | |
---|
55 | | | | |
---|
56 | | | | |
---|
57 | | | | |
---|
58 | | | | |
---|
59 | | | | |
---|
60 | | | | |
---|
61 | |
---|
62 | |
---|
63 | :: TO DO |
---|
64 | |
---|
65 | :: WHAT ? WHY ? |
---|
66 | This plugin doesn't do anything itself. It just provide classes for others plugins. |
---|
67 | |
---|
68 | Classes version for this package |
---|
69 | CommonPlugin.class.php |
---|
70 | GPCAjax.class.php |
---|
71 | GPCCss.class.php |
---|
72 | GPCPagesNavigation.class.php |
---|
73 | GPCPublicIntegration.class.php |
---|
74 | GPCTables.class.php -v1.5 |
---|
75 | GPCTranslate.class.inc.php + google_translate.js |
---|
76 | GPCUsersGroups.class.inc.php |
---|
77 | GPCTabSheet.class.inc.php |
---|
78 | |
---|
79 | genericjs.class.inc.php + genericjs.js |
---|
80 | |
---|
81 | See each file to know more about them |
---|
82 | -------------------------------------------------------------------------------- |
---|
83 | */ |
---|
84 | |
---|
85 | if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
86 | |
---|
87 | define('GPC_DIR' , basename(dirname(__FILE__))); |
---|
88 | define('GPC_PATH' , PHPWG_PLUGINS_PATH . GPC_DIR . '/'); |
---|
89 | |
---|
90 | include_once('gpc_version.inc.php'); // => Don't forget to update this file !! |
---|
91 | |
---|
92 | global $prefixeTable; |
---|
93 | |
---|
94 | if(defined('IN_ADMIN')) |
---|
95 | { |
---|
96 | //GPC admin interface is loaded and active only if in admin page |
---|
97 | include_once("gpc_aim.class.inc.php"); |
---|
98 | |
---|
99 | $obj = new GPC_AIM($prefixeTable, __FILE__); |
---|
100 | $obj->initEvents(); |
---|
101 | set_plugin_data($plugin['id'], $obj); |
---|
102 | } |
---|
103 | |
---|
104 | ?> |
---|