Changeset 129 for trunk/examples/TestDynamicSetters.php
- Timestamp:
- 11/17/07 18:01:44 (1 year ago)
- Files:
-
- trunk/examples/TestDynamicSetters.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/TestDynamicSetters.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; … … 20 20 class TestDynamicSetters 21 21 { 22 public static function main()23 {22 public static function main() 23 { 24 24 $tagParser = new DefinitionParser(); 25 25 $defs = $tagParser->parse(getcwd() . '/xml/defines-dynamic-setters.xml'); … … 38 38 $foo = $conf->getConfigValue('class'); 39 39 var_dump($foo); 40 }40 } 41 41 } 42 42 TestDynamicSetters::main();
