1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Grum Plugins Classes.2 |
---|
4 | Version: 2.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 |
---|
7 | Author: Piwigo team |
---|
8 | Author URI: http://piwigo.org |
---|
9 | */ |
---|
10 | |
---|
11 | /* |
---|
12 | -------------------------------------------------------------------------------- |
---|
13 | Author : Grum |
---|
14 | email : grum@grum.dnsalias.com |
---|
15 | website : http://photos.grum.dnsalias.com |
---|
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 | 2.0.0 - 20/07/08 +convert classes for piwigo 2.0 |
---|
23 | |
---|
24 | :: TO DO |
---|
25 | |
---|
26 | :: WHAT ? WHY ? |
---|
27 | This plugin doesn't do anything itself. It just provide classes for others plugins. |
---|
28 | |
---|
29 | Classes version for this package |
---|
30 | ajax.class.php -v2.0 + ajax.js -v1.0.1 |
---|
31 | common_plugin.class.php -v2.0 |
---|
32 | css.class.php -v2.0 |
---|
33 | pages_navigation.class.php -v1.0 |
---|
34 | public_integration.class.php -v1.0 |
---|
35 | tables.class.php -v1.3 |
---|
36 | tabsheets.class.inc.php -v1.1 |
---|
37 | translate.class.inc.php -v2.0.0 + google_translate.js -v2.0.0 |
---|
38 | users_groups.class.inc.php -v1.0 |
---|
39 | genericjs.class.inc.php -v1.0 + genericjs.js -v1.0 |
---|
40 | |
---|
41 | See each file to know more about them |
---|
42 | -------------------------------------------------------------------------------- |
---|
43 | */ |
---|
44 | |
---|
45 | if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
46 | |
---|
47 | define('GPC_DIR' , basename(dirname(__FILE__))); |
---|
48 | define('GPC_PATH' , PHPWG_PLUGINS_PATH . GPC_DIR . '/'); |
---|
49 | |
---|
50 | define('GPC_VERSION' , '2.0.0'); |
---|
51 | |
---|
52 | ?> |
---|