htmlpurifier自定义属性

时间:2010-12-16 18:14:13

标签: html5 custom-attributes htmlpurifier

如何在HtmlPurifier中允许自定义(html5 data- *)属性?

输入:

<img src="/my.jpg" data-type="5" alt="" />

导致错误:

Attribute 'data-type' in element 'img' not supported 
(for information on implementing this, see the support forums) 

HtmlPurifier选项设置为:

'HTML.AllowedAttributes' => array('img.src', 'a.href', 'img.data-type')

1 个答案:

答案 0 :(得分:18)

HTML自定义程序定义符合标准的属性矩阵,并在尝试使用未在此矩阵中定义的属性时进行投诉。但是,您可以使用HTMLDefinition :: addAttribute()函数将新属性添加到默认定义中,如下所示:

$config = HTMLPurifier_Config::createDefault();
$def = $config->getHTMLDefinition(true);
$def->addAttribute('img', 'data-type', 'Text');
$purifier = new HTMLPurifier($config);

有关详细信息,请参阅HTMLDefinition::addAttribute的定义。 'Text'这里是属性类型,您可以从AttrTypes.php

中找到默认属性类型