/framework/experimental/graphic/GraphicModule.php
http://zoop.googlecode.com/ · PHP · 19 lines · 17 code · 2 blank · 0 comment · 0 complexity · d227313d1fa3cf6eeee18d11b68fe76c MD5 · raw file
- <?php
- class GraphicModule extends ZoopModule
- {
- function getClasses()
- {
- return array('GraphicParser', 'GraphicDocument', 'GraphicContainer', 'GraphicStyleStack', 'GraphicStyle',
- 'GraphicDiv', 'ZendPdfContext', 'PdfContext', 'GraphicContext', 'GraphicObject', 'GraphicTextRun',
- 'GraphicHardBrokenLine', 'GraphicSoftBrokenLine');
- }
-
- function getDepends()
- {
- return array('Xml');
- }
-
- function configure()
- {
- }
- }