mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
3d978c961d
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1002 48356398-32a2-884e-a903-53898d9a118a
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()
|
|
);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|