Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->registerFormatName("PHP-KDevelop");
     $this->setTitle("PHP Manual");
     $this->setExt(Config::ext() === null ? ".php" : Config::ext());
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->registerFormatName("PEAR-BigXHTML");
     $this->setTitle("PEAR Manual");
     $this->setExt(Config::ext() === null ? ".html" : Config::ext());
     $this->setChunked(false);
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->registerFormatName("Generic Unix Manual Pages");
     $this->setExt(Config::ext() === null ? ".3.gz" : Config::ext());
     $this->setChunked(true);
     $this->cchunk = $this->dchunk;
 }
Example #4
0
 /**
  * Creates a new instance.
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerFormatName($this->formatName);
     $this->setTitle('Index');
     $this->setChunked(true);
     $this->setExt(Config::ext() === null ? ".atom" : Config::ext());
     $this->date = date('c');
     if ($this->feedBaseUri === null) {
         $this->feedBaseUri = $this->targetBaseUri;
     }
 }
Example #5
0
 public function __construct()
 {
     $this->registerFormatName('IDE-PHPStub');
     $this->setExt(Config::ext() === null ? ".php" : Config::ext());
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     $this->setExt(Config::ext() === null ? ".pdf" : Config::ext());
     $this->pdfDoc = new PdfWriter();
 }
Example #7
0
File: Web.php Project: philip/phd
 public function __construct()
 {
     parent::__construct();
     $this->registerFormatName('PEAR-Web');
     $this->setExt(Config::ext() === null ? 'php' : Config::ext());
 }
Example #8
0
 public function __construct()
 {
     parent::__construct();
     $this->registerFormatName("PHP-Chunked-XHTML");
     $this->setExt(Config::ext() === null ? ".html" : Config::ext());
 }
Example #9
0
 public function __construct()
 {
     $this->registerFormatName("IDE-Funclist");
     $this->setExt(Config::ext() === null ? ".txt" : Config::ext());
 }
Example #10
0
File: XHTML.php Project: philip/phd
 public function __construct()
 {
     parent::__construct();
     $this->registerPIHandlers($this->pihandlers);
     $this->setExt(Config::ext() === null ? ".html" : Config::ext());
 }
Example #11
0
File: XML.php Project: philip/phd
 public function __construct()
 {
     $this->registerFormatName('IDE-XML');
     $this->setExt(Config::ext() === null ? ".xml" : Config::ext());
 }
Example #12
0
 public function __construct()
 {
     $this->registerFormatName('IDE-SQLite');
     $this->setExt(Config::ext() === null ? ".sqlite" : Config::ext());
 }
Example #13
0
 public function __construct()
 {
     $this->registerFormatName('CTags');
     $this->setExt(Config::ext() === null ? ".php" : Config::ext());
     $this->tagFile = NULL;
 }