ILIAS  release_5-2 Revision v5.2.25-18-g3f80b82851
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
addBlankElement($element)
Convenience function that creates a totally blank, non-standalone element.
Definition: HTMLModule.php:174
$elements
Informally, a list of elements this module changes.
Definition: HTMLModule.php:34
Create styles array
The data for the language used.
Represents an XHTML 1.1 module, with information on elements, tags and attributes.
Definition: HTMLModule.php:18
Post-transform that performs validation to the name attribute; if it is present with an equivalent id...
Definition: NameSync.php:8