/[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.5 - (show annotations)
Sat May 10 18:12:46 2003 UTC (21 years, 2 months ago) by jonen
Branch: MAIN
Changes since 1.4: +3 -1 lines
added inclusion of new widget

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.4 2003/04/18 13:53:38 joko Exp $
9 *
10 * @author Sebastian Utz <seut@tunemedia.de>
11 * @package org.netfrag.patches
12 *
13 */
14
15 /**
16 * get right path
17 *
18 */
19 global $config;
20 $path = $config['_startup'][path][lib][patches] . "phphtmllib";
21
22
23 /**
24 * add path to env
25 *
26 */
27 php::add_libpath(array($path));
28
29 /**
30 * do the includes for the drivers
31 *
32 */
33 include_once("drivers/MemoryDataSource.php");
34
35
36 /**
37 * do the includes for the widgets
38 *
39 */
40 include_once("widgets/GenericGUIDataList.php");
41 include_once("widgets/DataItem.php");
42 include_once("widgets/EditDataItem.php");
43 include_once("widgets/FlexibleNegotiation.php");
44
45 include_once("widgets/CreateDataItem.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/TreeNav_PearHtmlTreeMenuBridge.inc");
52 include_once("widgets/DHTMLTreeNav.inc");
53 include_once("widgets/SelectNav.inc");
54
55 ?>

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