Changeset 171
- Timestamp:
- 01/29/07 01:37:23 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/log/stubLoggerXJConfFactory.php
r150 r171 1 1 <?php 2 /** 3 * Class to create the logging infrastructure from an xml configuration. 4 * 5 * @author Frank Kleine <mikey@stubbles.net> 6 * @package stubbles 7 * @subpackage util_log 8 */ 2 9 stubClassLoader::load('net.stubbles.util.xjconf.stubXJConfLoader', 3 10 'net.stubbles.util.xjconf.stubConfigXJConfExtension', … … 7 14 'XmlParser' 8 15 ); 16 /** 17 * Class to create the logging infrastructure from an xml configuration. 18 * 19 * @static 20 * @package stubbles 21 * @subpackage util_log 22 * @uses http://php.xjconf.net/ 23 */ 9 24 class stubLoggerXJConfFactory 10 25 { trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfLoader.php
r150 r171 3 3 * Class loader to use for XJConf. 4 4 * 5 * @author Frank Kleine <mikey@stubbles.net> 5 * @author Frank Kleine <mikey@stubbles.net> 6 * @author Stephan Schmidt <schst@stubbles.net> 7 * @package stubbles 8 * @subpackage util_xjconf 6 9 */ 7 10 $xjConfUri = StarClassRegistry::getUriForClass('net.xjconf.XJConfLoader'); 8 11 if (null === $xjConfUri) { 9 12 if (!@include 'XJConf/XJConfLoader.php') { 10 throw new stubException('XJConf could not be found in lib path.');13 throw new stubException('XJConf could not be found in lib nor in include path.'); 11 14 } 12 15 } else { … … 20 23 * 21 24 * @package stubbles 22 * @subpackage helper 25 * @subpackage util_xjconf 26 * @uses http://php.xjconf.net/ 23 27 */ 24 28 class stubXJConfLoader extends stubBaseObject implements XJConfClassLoader
