示例#1
0
文件: odt.php 项目: bmdevel/ezc
 /**
  * Construct ODT document.
  *
  * @ignore
  * @param ezcDocumentOdtOptions $options
  * @return void
  */
 public function __construct(ezcDocumentOdtOptions $options = null)
 {
     parent::__construct($options === null ? new ezcDocumentOdtOptions() : $options);
     $this->filters = array(new ezcDocumentOdtImageFilter($this->options), new ezcDocumentOdtElementFilter(), new ezcDocumentOdtStyleFilter());
 }
示例#2
0
 /**
  * Construct document xml base.
  *
  * @ignore
  * @param ezcDocumentEzXmlOptions $options
  * @return void
  */
 public function __construct(ezcDocumentEzXmlOptions $options = null)
 {
     parent::__construct($options === null ? new ezcDocumentEzXmlOptions() : $options);
 }
示例#3
0
文件: xhtml.php 项目: bmdevel/ezc
 /**
  * Construct document xml base.
  *
  * @ignore
  * @param ezcDocumentXhtmlOptions $options
  * @return void
  */
 public function __construct(ezcDocumentXhtmlOptions $options = null)
 {
     parent::__construct($options === null ? new ezcDocumentXhtmlOptions() : $options);
     $this->filters = array(new ezcDocumentXhtmlElementFilter(), new ezcDocumentXhtmlMetadataFilter());
 }