Пример #1
0
 /**
  * Constructor.
  *
  * @param string|null $doctype The output doctype
  */
 public function __construct($doctype = null)
 {
     if ($doctype === null) {
         $doctype = get_pref('doctype', 'html5');
     }
     parent::__construct($doctype);
     $this->setRelativeImagePrefix(hu);
     $this->setSymbol('quote_single_open', gTxt('txt_quote_single_open'));
     $this->setSymbol('quote_single_close', gTxt('txt_quote_single_close'));
     $this->setSymbol('quote_double_open', gTxt('txt_quote_double_open'));
     $this->setSymbol('quote_double_close', gTxt('txt_quote_double_close'));
 }
Пример #2
0
 /**
  * Constructor
  *
  * @access  public
  */
 public function __construct()
 {
     parent::__construct();
 }
Пример #3
0
 public function __construct($doctype = 'xhtml')
 {
     parent::__construct($doctype);
     $this->unrestricted_url_schemes[] = 'redaxo';
 }