You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
996 B
40 lines
996 B
<?php |
|
|
|
/** |
|
* XHTML 1.1 Hypertext Module, defines hypertext links. Core Module. |
|
*/ |
|
class HTMLPurifier_HTMLModule_Hypertext extends HTMLPurifier_HTMLModule |
|
{ |
|
|
|
/** |
|
* @type string |
|
*/ |
|
public $name = 'Hypertext'; |
|
|
|
/** |
|
* @param HTMLPurifier_Config $config |
|
*/ |
|
public function setup($config) |
|
{ |
|
$a = $this->addElement( |
|
'a', |
|
'Inline', |
|
'Inline', |
|
'Common', |
|
array( |
|
// 'accesskey' => 'Character', |
|
// 'charset' => 'Charset', |
|
'href' => 'URI', |
|
// 'hreflang' => 'LanguageCode', |
|
'rel' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rel'), |
|
'rev' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rev'), |
|
// 'tabindex' => 'Number', |
|
// 'type' => 'ContentType', |
|
) |
|
); |
|
$a->formatting = true; |
|
$a->excludes = array('a' => true); |
|
} |
|
} |
|
|
|
// vim: et sw=4 sts=4
|
|
|