ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
Target.php
Go to the documentation of this file.
1 <?php
2 
7 {
11  public $name = 'Target';
12 
16  public function setup($config)
17  {
18  $elements = array('a');
19  foreach ($elements as $name) {
20  $e = $this->addBlankElement($name);
21  $e->attr = array(
23  );
24  }
25  }
26 }
27 
28 // 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
XHTML 1.1 Target Module, defines target attribute in link elements.
Definition: Target.php:6
Special-case enum attribute definition that lazy loads allowed frame targets.
Definition: FrameTarget.php:6
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