HTMLPurifierフィルター内の要素でrel属性を許可しようとしています。私はこのガイドhttp://htmlpurifier.org/docs/enduser-customize.htmlに従っており、コードは次のとおりです。
$config = HTMLPurifier_Config::createDefault();
$config->set('HTML.Doctype', 'XHTML 1.0 Strict');
$config->set('HTML.DefinitionID', 'enduser-customize.html tutorial');
$config->set('HTML.DefinitionRev', 1);
$config->set('Cache.DefinitionImpl', null); // remove this later!
$def = $config->getHTMLDefinition(true);
$def->addAttribute('a', 'href*', 'URI');
$def->addAttribute('a', 'rel', 'CDATA');
$purifier = new HTMLPurifier($config);
ただし、HTMLピューリファイヤーはまだすべてのrel属性を除外しています...問題が何であるかについて少し混乱しています。
私が使用するとき:
$config->set('Attr', 'AllowedRel', array('something'));
このエラーが発生します:
注意:非推奨のAPIを使用する:代わりに、 1819行目のファイルの
$config->set('Attr.AllowedRel', ...)
191行目で使用してくださいC:\wamp\www\neonet\application\modules\admin\controllers\IndexController.php
C:\wamp\www\neonet\library\My\htmlpurifier-4.0.0-standalone\HTMLPurifier.standalone.php
編集:
新しいコード:
$config = HTMLPurifier_Config::createDefault();
$config->set('HTML.Doctype', 'XHTML 1.0 Strict');
$config->set('Attr.AllowedRel', array('something'));
$purifier = new HTMLPurifier($config);
私が使用するとき:
<href="/" rel="something">anchor</a>
Rel属性は引き続きフィルタリングされます。