1 <?php declare(strict_types=1);
26 final public function purify(
string $html) : string
28 return $this->purifier->purify($html);
34 final public function purifyArray(array $htmlCollection) : array
36 return $this->purifier->purifyArray($htmlCollection);
82 $supportedElements = array();
84 $notSupportedTags = array(
97 foreach ($elements as $element) {
98 if (!in_array($element, $notSupportedTags)) {
99 $supportedElements[] = $element;
103 return $supportedElements;
115 if (in_array(
'u', $elements) && !in_array(
'span', $elements)) {
116 $elements[] =
'span';
static makeDirParents($a_dir)
Create a new directory and all parent directories.
static _getCacheDirectory()
makeElementListTinyMceCompliant(array $elements)
purifyArray(array $htmlCollection)
removeUnsupportedElements(array $elements)
Removes all unsupported elements.
getPurifierConfigInstance()
Abstract class wrapping the HTMLPurifier instance.
__construct()
ilHtmlPurifierAbstractLibWrapper constructor.
Interface for html sanitizing functionality.
static getDataDir()
get data directory (outside webspace)
setPurifier(HTMLPurifier $purifier)