ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Definition.php
Go to the documentation of this file.
1 <?php
2 
7 abstract class HTMLPurifier_Definition
8 {
9 
14  public $setup = false;
15 
26  public $optimized = null;
27 
32  public $type;
33 
39  abstract protected function doSetup($config);
40 
45  public function setup($config)
46  {
47  if ($this->setup) {
48  return;
49  }
50  $this->setup = true;
51  $this->doSetup($config);
52  }
53 }
54 
55 // vim: et sw=4 sts=4