/framework/core/xml/XmlModule.php

http://zoop.googlecode.com/ · PHP · 19 lines · 16 code · 3 blank · 0 comment · 0 complexity · cd677dd6780d5bb36d6f01090638bf17 MD5 · raw file

  1. <?php
  2. class XmlModule extends ZoopModule
  3. {
  4. function getIncludes()
  5. {
  6. return array('utils.php');
  7. }
  8. function getClasses()
  9. {
  10. return array('XmlDom', 'XmlNode', 'XmlNodeList', 'PropertyList', 'XmlParser',
  11. 'XmlContainer', 'ProgressivePropertyList');
  12. }
  13. function configure()
  14. {
  15. }
  16. }