Changeset 55
- Timestamp:
- 11/29/06 23:06:01 (2 years ago)
- Files:
-
- trunk/examples/TestCDataSetter.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/TestCDataSetter.php
r37 r55 2 2 /** 3 3 * Example that shows how to use the cdata setter. 4 * 4 * 5 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 6 * @author Frank Kleine <frank.kleine@schlund.de> … … 14 14 /** 15 15 * Example that shows how to use the cdata setter. 16 * 16 * 17 17 * @package XJConf 18 18 * @subpackage examples … … 24 24 $tagParser = new DefinitionParser(); 25 25 $defs = $tagParser->parse(getcwd() . '/xml/defines-set-cdata.xml'); 26 var_dump($defs);27 26 $conf = new XmlParser(); 28 27 $conf->setTagDefinitions($defs); … … 34 33 exit(0); 35 34 } 36 35 37 36 $c = $conf->getConfigValue('complex'); 38 37 var_dump($c);
