PSR-2 reformatting PHPDoc corrections
[htmlpurifier.git] / library / HTMLPurifier / HTMLModule / TargetBlank.php
blob58ccc68941dfd29983d66c65c660f831500d4d78
1 <?php
3 /**
4 * Module adds the target=blank attribute transformation to a tags. It
5 * is enabled by HTML.TargetBlank
6 */
7 class HTMLPurifier_HTMLModule_TargetBlank extends HTMLPurifier_HTMLModule
9 /**
10 * @type string
12 public $name = 'TargetBlank';
14 /**
15 * @param HTMLPurifier_Config $config
17 public function setup($config)
19 $a = $this->addBlankElement('a');
20 $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetBlank();
24 // vim: et sw=4 sts=4