Changeset 129 for trunk/examples/TestDynamicTypes.php
- Timestamp:
- 11/17/07 18:01:44 (1 year ago)
- Files:
-
- trunk/examples/TestDynamicTypes.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/TestDynamicTypes.php
r119 r129 6 6 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 7 7 */ 8 require_once '../XJConf/XJConf Loader.php';8 require_once '../XJConf/XJConf.php'; 9 9 use net::xjconf::DefinitionParser; 10 10 use net::xjconf::XmlParser; … … 22 22 class TestDynamicTypes 23 23 { 24 public static function main()25 {24 public static function main() 25 { 26 26 $tagParser = new DefinitionParser(); 27 27 $defs = $tagParser->parse(getcwd() . '/xml/defines-dynamic-types.xml'); … … 40 40 $foo = $conf->getConfigValue('foo'); 41 41 var_dump($foo); 42 }42 } 43 43 } 44 44 TestDynamicTypes::main();
