source: trunk/plugins/grum_plugins_classes-2/main.inc.php @ 2588

Last change on this file since 2588 was 2588, checked in by patdenice, 16 years ago
  • Move get_extents function to include/functions.inc.php.
  • Change all plugins version to 2.0.
  • LocalFiles Editor can now edit and create template extension.
  • Editarea (for LocalFiles Editor) go to version 0.7.2.2 (chrome compatible)
  • Editarea activation is now saved in database with AJAX.
  • Property svn:executable set to *
File size: 1.6 KB
Line 
1<?php
2/*
3Plugin Name: Grum Plugins Classes.2
4Version: 2.0
5Description: Collection de classes partagées entre mes plugins (existants, ou à venir) / Partaged classes between my plugins (actuals or futures)
6Plugin URI: http://piwigo.org
7Author: Piwigo team
8Author 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 ?
27This plugin doesn't do anything itself. It just provide classes for others plugins.
28
29Classes 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
41See each file to know more about them
42--------------------------------------------------------------------------------
43*/
44
45if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
46
47define('GPC_DIR' , basename(dirname(__FILE__)));
48define('GPC_PATH' , PHPWG_PLUGINS_PATH . GPC_DIR . '/');
49
50define('GPC_VERSION' , '2.0.0');
51
52?>
Note: See TracBrowser for help on using the repository browser.