mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-01-10 16:01:53 +00:00
36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/HTMLModule.php';
|
||
|
|
||
|
/**
|
||
|
* XHTML 1.1 Hypertext Module, defines hypertext links. Core Module.
|
||
|
*/
|
||
|
class HTMLPurifier_HTMLModule_Hypertext extends HTMLPurifier_HTMLModule
|
||
|
{
|
||
|
|
||
|
var $name = 'Hypertext';
|
||
|
var $elements = array('a');
|
||
|
var $info = array();
|
||
|
var $content_sets = array('Inline' => 'a');
|
||
|
|
||
|
function HTMLPurifier_HTMLModule_Hypertext() {
|
||
|
$this->info['a'] = new HTMLPurifier_ElementDef();
|
||
|
$this->info['a']->attr = array(
|
||
|
0 => array('Common'),
|
||
|
// 'accesskey' => 'Character',
|
||
|
// 'charset' => 'Charset',
|
||
|
'href' => 'URI',
|
||
|
//'hreflang' => 'LanguageCode',
|
||
|
//'rel' => 'LinkTypes',
|
||
|
//'rev' => 'LinkTypes',
|
||
|
//'tabindex' => 'Number',
|
||
|
//'type' => 'ContentType',
|
||
|
);
|
||
|
$this->info['a']->content_model = '#PCDATA | Inline';
|
||
|
$this->info['a']->content_model_type = 'optional';
|
||
|
$this->info['a']->excludes = array('a' => true);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|