ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
TargetBlank.php
Go to the documentation of this file.
1 <?php
2 
8 {
9 
10  public $name = 'TargetBlank';
11 
12  public function setup($config) {
13  $a = $this->addBlankElement('a');
14  $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetBlank();
15  }
16 
17 }
18 
19 // vim: et sw=4 sts=4
addBlankElement($element)
Convenience function that creates a totally blank, non-standalone element.
Definition: HTMLModule.php:153
Module adds the target=blank attribute transformation to a tags.
Definition: TargetBlank.php:7
Adds target="blank" to all outbound links.
Definition: TargetBlank.php:10
Represents an XHTML 1.1 module, with information on elements, tags and attributes.
Definition: HTMLModule.php:18