| 1 |
jonen |
1.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 |
joko |
1.6 |
* $Id: includes.inc,v 1.5 2003/05/10 18:12:46 jonen Exp $ |
| 9 |
jonen |
1.1 |
* |
| 10 |
|
|
* @author Sebastian Utz <seut@tunemedia.de> |
| 11 |
|
|
* @package org.netfrag.patches |
| 12 |
|
|
* |
| 13 |
|
|
*/ |
| 14 |
|
|
|
| 15 |
|
|
/** |
| 16 |
|
|
* get right path |
| 17 |
joko |
1.6 |
* This should point/resolve to the directory: |
| 18 |
|
|
* /your/base/path/org.netfrag.patches/phphtmllib |
| 19 |
jonen |
1.1 |
* |
| 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 |
jonen |
1.2 |
include_once("widgets/DataItem.php"); |
| 44 |
jonen |
1.1 |
include_once("widgets/EditDataItem.php"); |
| 45 |
joko |
1.3 |
include_once("widgets/FlexibleNegotiation.php"); |
| 46 |
jonen |
1.5 |
|
| 47 |
joko |
1.4 |
// required for FlexibleNegotiation |
| 48 |
|
|
include_once("forms/NonValidatingFormProcessor.php"); |
| 49 |
joko |
1.3 |
|
| 50 |
joko |
1.4 |
// required for getting phpHtmlLib's TreeNav and PEAR::Tree together |
| 51 |
joko |
1.6 |
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 |
joko |
1.3 |
|
| 62 |
|
|
?> |