| 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.9 |
* $Id: includes.inc,v 1.8 2003/12/15 21:07:35 udo 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.9 |
// PEAR::HTML_TreeMenu using PEAR::Tree |
| 51 |
joko |
1.6 |
include_once("widgets/navigation/DHTMLTreeNav.inc"); |
| 52 |
|
|
include_once("widgets/navigation/SelectNav.inc"); |
| 53 |
|
|
|
| 54 |
|
|
// some new DataItem widgets |
| 55 |
|
|
include_once("widgets/CreateDataItem.php"); |
| 56 |
|
|
|
| 57 |
|
|
// required for The Mapper |
| 58 |
|
|
//include_once("forms/MultiColumnFormContent.php"); |
| 59 |
|
|
include_once("widgets/TopicMapper.php"); |
| 60 |
joko |
1.3 |
|
| 61 |
udo |
1.8 |
// required for News management |
| 62 |
udo |
1.7 |
include_once("forms/UploadForm.php"); |
| 63 |
udo |
1.8 |
// required for content management |
| 64 |
udo |
1.7 |
include_once("widgets/ExpandDataItem.php"); |
| 65 |
|
|
include_once("widgets/ExpandEditDataItem.php"); |
| 66 |
|
|
include_once("forms/EditPageForm.php"); |
| 67 |
|
|
include_once("forms/EditTextForm.php"); |
| 68 |
|
|
|
| 69 |
|
|
|
| 70 |
|
|
?> |