HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/library/HTMLPurifier/Doctype.php
Go to the documentation of this file.
00001 <?php
00002 
00009 class HTMLPurifier_Doctype
00010 {
00014     public $name;
00015 
00020     public $modules = array();
00021 
00025     public $tidyModules = array();
00026 
00030     public $xml = true;
00031 
00035     public $aliases = array();
00036 
00040     public $dtdPublic;
00041 
00045     public $dtdSystem;
00046 
00047     public function __construct($name = null, $xml = true, $modules = array(),
00048         $tidyModules = array(), $aliases = array(), $dtd_public = null, $dtd_system = null
00049     ) {
00050         $this->name         = $name;
00051         $this->xml          = $xml;
00052         $this->modules      = $modules;
00053         $this->tidyModules  = $tidyModules;
00054         $this->aliases      = $aliases;
00055         $this->dtdPublic    = $dtd_public;
00056         $this->dtdSystem    = $dtd_system;
00057     }
00058 }
00059 
00060 // vim: et sw=4 sts=4