public static function cleanExternalHtml($html)
{
$allowedTags = PhocacartUtilsSettings::getHTMLTagsExternalSource();
$allowedTagsString = '<' . implode('><', $allowedTags) . '>';
$html = strip_tags($html, $allowedTagsString);
return $html;
}