/[cvs]/nfo/php/libs/org.netfrag.patches/phphtmllib/includes.inc
ViewVC logotype

Contents of /nfo/php/libs/org.netfrag.patches/phphtmllib/includes.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.7 - (show annotations)
Sat Nov 22 18:39:36 2003 UTC (20 years, 7 months ago) by udo
Branch: MAIN
Changes since 1.6: +11 -2 lines
added new files

1 <?php
2
3 /**
4 * this file includes all of the widgets and drivers
5 * that live in the sub-dirs of this dir.
6 * If you add a new widget/driver, you should add it here.
7 *
8 * $Id: includes.inc,v 1.6 2003/06/06 04:06:58 joko Exp $
9 *
10 * @author Sebastian Utz <seut@tunemedia.de>
11 * @package org.netfrag.patches
12 *
13 */
14
15 /**
16 * get right path
17 * This should point/resolve to the directory:
18 * /your/base/path/org.netfrag.patches/phphtmllib
19 *
20 */
21 global $config;
22 $path = $config['_startup'][path][lib][patches] . "phphtmllib";
23
24
25 /**
26 * add path to env
27 *
28 */
29 php::add_libpath(array($path));
30
31 /**
32 * do the includes for the drivers
33 *
34 */
35 include_once("drivers/MemoryDataSource.php");
36
37
38 /**
39 * do the includes for the widgets
40 *
41 */
42 include_once("widgets/GenericGUIDataList.php");
43 include_once("widgets/DataItem.php");
44 include_once("widgets/EditDataItem.php");
45 include_once("widgets/FlexibleNegotiation.php");
46
47 // required for FlexibleNegotiation
48 include_once("forms/NonValidatingFormProcessor.php");
49
50 // required for getting phpHtmlLib's TreeNav and PEAR::Tree together
51 include_once("widgets/navigation/TreeNav_PearHtmlTreeMenuBridge.inc");
52 include_once("widgets/navigation/DHTMLTreeNav.inc");
53 include_once("widgets/navigation/SelectNav.inc");
54
55 // some new DataItem widgets
56 include_once("widgets/CreateDataItem.php");
57
58 // required for The Mapper
59 //include_once("forms/MultiColumnFormContent.php");
60 include_once("widgets/TopicMapper.php");
61
62 // require for New managment
63 include_once("forms/UploadForm.php");
64
65 include_once("widgets/ExpandDataItem.php");
66 include_once("widgets/ExpandEditDataItem.php");
67 include_once("forms/EditPageForm.php");
68 include_once("forms/EditTextForm.php");
69
70
71 ?>

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed