diff options
author | grum <grum@piwigo.org> | 2008-08-03 07:48:39 +0000 |
---|---|---|
committer | grum <grum@piwigo.org> | 2008-08-03 07:48:39 +0000 |
commit | 7ebed797262c7f3371ae1b16ed455f7e9879caf0 (patch) | |
tree | 7abef8d2994ae2efa66f38e3027369c7ac0e3926 /plugins/grum_plugins_classes-2/main.inc.php | |
parent | ee0af5d43d607ffb969a10e6a21e9df923651d52 (diff) |
Asked by rvelices on this topic
http://forum.phpwebgallery.net/viewtopic.php?pid=92097#p92097
A plugin to integrate the menu class
see test_menu directory
A plugin to show how to use the menu class
see AMenuManager directory
And common classes needed for the AMenuManager plugin
see grum_plugins_classes-2 directory
See topic http://forum.phpwebgallery.net/viewtopic.php?pid=92637#p92637 for more
informations
git-svn-id: http://piwigo.org/svn/trunk@2466 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/grum_plugins_classes-2/main.inc.php')
-rwxr-xr-x | plugins/grum_plugins_classes-2/main.inc.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/plugins/grum_plugins_classes-2/main.inc.php b/plugins/grum_plugins_classes-2/main.inc.php new file mode 100755 index 000000000..3ff10fc29 --- /dev/null +++ b/plugins/grum_plugins_classes-2/main.inc.php @@ -0,0 +1,50 @@ +<?php +/* +Plugin Name: Grum Plugins Classes.2 +Version: 2.0.0 +Description: Collection de classes partagées entre mes plugins (existants, ou à venir) / Partaged classes between my plugins (actuals or futures) +Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=199 +*/ + +/* +-------------------------------------------------------------------------------- + Author : Grum + email : grum@grum.dnsalias.com + website : http://photos.grum.dnsalias.com + PWG user : http://forum.phpwebgallery.net/profile.php?id=3706 + + << May the Little SpaceFrog be with you ! >> +-------------------------------------------------------------------------------- + +:: HISTORY + 2.0.0 - 20/07/08 +convert classes for piwigo 2.0 + +:: TO DO + +:: WHAT ? WHY ? +This plugin doesn't do anything itself. It just provide classes for others plugins. + +Classes version for this package + ajax.class.php -v2.0 + ajax.js -v1.0.1 + common_plugin.class.php -v2.0 + css.class.php -v2.0 + pages_navigation.class.php -v1.0 + public_integration.class.php -v1.0 + tables.class.php -v1.3 + tabsheets.class.inc.php -v1.1 + translate.class.inc.php -v2.0.0 + google_translate.js -v2.0.0 + users_groups.class.inc.php -v1.0 + genericjs.class.inc.php -v1.0 + genericjs.js -v1.0 + +See each file to know more about them +-------------------------------------------------------------------------------- +*/ + +if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); + +define('GPC_DIR' , basename(dirname(__FILE__))); +define('GPC_PATH' , PHPWG_PLUGINS_PATH . GPC_DIR . '/'); + +define('GPC_VERSION' , '2.0.0'); + +?> |