/framework/experimental/graphic/GraphicModule.php

http://zoop.googlecode.com/ · PHP · 19 lines · 17 code · 2 blank · 0 comment · 0 complexity · d227313d1fa3cf6eeee18d11b68fe76c MD5 · raw file

  1. <?php
  2. class GraphicModule extends ZoopModule
  3. {
  4. function getClasses()
  5. {
  6. return array('GraphicParser', 'GraphicDocument', 'GraphicContainer', 'GraphicStyleStack', 'GraphicStyle',
  7. 'GraphicDiv', 'ZendPdfContext', 'PdfContext', 'GraphicContext', 'GraphicObject', 'GraphicTextRun',
  8. 'GraphicHardBrokenLine', 'GraphicSoftBrokenLine');
  9. }
  10. function getDepends()
  11. {
  12. return array('Xml');
  13. }
  14. function configure()
  15. {
  16. }
  17. }