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

Last change on this file since 2466 was 2466, checked in by grum, 16 years ago

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

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1<?php
2/*
3Plugin Name: Grum Plugins Classes.2
4Version: 2.0.0
5Description: Collection de classes partagées entre mes plugins (existants, ou à venir) / Partaged classes between my plugins (actuals or futures)
6Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=199
7*/
8
9/*
10--------------------------------------------------------------------------------
11  Author     : Grum
12    email    : grum@grum.dnsalias.com
13    website  : http://photos.grum.dnsalias.com
14    PWG user : http://forum.phpwebgallery.net/profile.php?id=3706
15
16    << May the Little SpaceFrog be with you ! >>
17--------------------------------------------------------------------------------
18
19:: HISTORY
20  2.0.0       - 20/07/08  +convert classes for piwigo 2.0
21
22:: TO DO
23
24:: WHAT ? WHY ?
25This plugin doesn't do anything itself. It just provide classes for others plugins.
26
27Classes version for this package
28    ajax.class.php -v2.0 + ajax.js -v1.0.1
29    common_plugin.class.php -v2.0
30    css.class.php -v2.0
31    pages_navigation.class.php -v1.0
32    public_integration.class.php -v1.0
33    tables.class.php -v1.3
34    tabsheets.class.inc.php -v1.1
35    translate.class.inc.php -v2.0.0 + google_translate.js -v2.0.0
36    users_groups.class.inc.php -v1.0
37    genericjs.class.inc.php -v1.0 + genericjs.js -v1.0
38
39See each file to know more about them
40--------------------------------------------------------------------------------
41*/
42
43if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
44
45define('GPC_DIR' , basename(dirname(__FILE__)));
46define('GPC_PATH' , PHPWG_PLUGINS_PATH . GPC_DIR . '/');
47
48define('GPC_VERSION' , '2.0.0');
49
50?>
Note: See TracBrowser for help on using the repository browser.