XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
Doctype.php
Go to the documentation of this file.
1 <?php
2 
10 {
14  public $name;
15 
20  public $modules = array();
21 
25  public $tidyModules = array();
26 
30  public $xml = true;
31 
35  public $aliases = array();
36 
40  public $dtdPublic;
41 
45  public $dtdSystem;
46 
47  public function __construct($name = null, $xml = true, $modules = array(),
48  $tidyModules = array(), $aliases = array(), $dtd_public = null, $dtd_system = null
49  ) {
50  $this->name = $name;
51  $this->xml = $xml;
52  $this->modules = $modules;
53  $this->tidyModules = $tidyModules;
54  $this->aliases = $aliases;
55  $this->dtdPublic = $dtd_public;
56  $this->dtdSystem = $dtd_system;
57  }
58 }
59 
60 // vim: et sw=4 sts=4