ILIAS  release_4-4 Revision
Target.php
Go to the documentation of this file.
1 <?php
2 
7 {
8 
9  public $name = 'Target';
10 
11  public function setup($config) {
12  $elements = array('a');
13  foreach ($elements as $name) {
14  $e = $this->addBlankElement($name);
15  $e->attr = array(
17  );
18  }
19  }
20 
21 }
22 
23 // vim: et sw=4 sts=4
addBlankElement($element)
Convenience function that creates a totally blank, non-standalone element.
Definition: HTMLModule.php:153
$elements
Informally, a list of elements this module changes.
Definition: HTMLModule.php:32
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
Represents an XHTML 1.1 module, with information on elements, tags and attributes.
Definition: HTMLModule.php:18