ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Name.php
Go to the documentation of this file.
1 <?php
2 
4 {
8  public $name = 'Name';
9 
13  public function setup($config)
14  {
15  $elements = array('a', 'applet', 'form', 'frame', 'iframe', 'img', 'map');
16  foreach ($elements as $name) {
17  $element = $this->addBlankElement($name);
18  $element->attr['name'] = 'CDATA';
19  if (!$config->get('HTML.Attr.Name.UseCDATA')) {
20  $element->attr_transform_post[] = new HTMLPurifier_AttrTransform_NameSync();
21  }
22  }
23  }
24 }
25 
26 // vim: et sw=4 sts=4