ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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
Post-transform that performs validation to the name attribute; if it is present with an equivalent id...
Definition: NameSync.php:9
Represents an XHTML 1.1 module, with information on elements, tags and attributes.
Definition: HTMLModule.php:19
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