mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
26 lines
640 B
PHP
26 lines
640 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/AttrDef/HTML/FrameTarget.php';
|
||
|
|
||
|
/**
|
||
|
* XHTML 1.1 Target Module, defines target attribute in link elements.
|
||
|
*/
|
||
|
class HTMLPurifier_HTMLModule_Target extends HTMLPurifier_HTMLModule
|
||
|
{
|
||
|
|
||
|
var $name = 'Target';
|
||
|
var $elements = array('a');
|
||
|
|
||
|
function HTMLPurifier_HTMLModule_Target() {
|
||
|
foreach ($this->elements as $e) {
|
||
|
$this->info[$e] = new HTMLPurifier_ElementDef();
|
||
|
$this->info[$e]->standalone = false;
|
||
|
$this->info[$e]->attr = array(
|
||
|
'target' => new HTMLPurifier_AttrDef_HTML_FrameTarget()
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|