ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilHtmlForumPostPurifier.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilHtmlForumPostPurifier
extends
ilHtmlPurifierAbstractLibWrapper
26
{
27
protected
function
getPurifierConfigInstance
(): HTMLPurifier_Config
28
{
29
$config
= HTMLPurifier_Config::createDefault();
30
$config
->set(
'HTML.DefinitionID'
,
'ilias forum post'
);
31
$config
->set(
'HTML.DefinitionRev'
, 1);
32
$config
->set(
'Cache.SerializerPath'
,
ilHtmlPurifierAbstractLibWrapper::_getCacheDirectory
());
33
$config
->set(
'HTML.Doctype'
,
'XHTML 1.0 Strict'
);
34
35
$tags =
ilObjAdvancedEditing::_getUsedHTMLTags
(
'frm_post'
);
36
$tags = $this->
makeElementListTinyMceCompliant
($tags);
37
$config
->set(
'HTML.AllowedElements'
, $this->
removeUnsupportedElements
($tags));
38
$config
->set(
'HTML.ForbiddenAttributes'
,
'div@style'
);
39
40
if
($def =
$config
->maybeGetRawHTMLDefinition()) {
41
$def->addAttribute(
'a'
,
'target'
,
'Enum#_blank,_self,_target,_top'
);
42
}
43
44
return
$config
;
45
}
46
}
ilHtmlForumPostPurifier
Concrete class for sanitizing html of forum posts.
Definition:
class.ilHtmlForumPostPurifier.php:25
ilHtmlPurifierAbstractLibWrapper\_getCacheDirectory
static _getCacheDirectory()
Definition:
class.ilHtmlPurifierAbstractLibWrapper.php:72
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:85
ilHtmlPurifierAbstractLibWrapper\makeElementListTinyMceCompliant
makeElementListTinyMceCompliant(array $elements)
Definition:
class.ilHtmlPurifierAbstractLibWrapper.php:116
ilHtmlPurifierAbstractLibWrapper\removeUnsupportedElements
removeUnsupportedElements(array $elements)
Removes all unsupported elements.
Definition:
class.ilHtmlPurifierAbstractLibWrapper.php:86
ilHtmlForumPostPurifier\getPurifierConfigInstance
getPurifierConfigInstance()
Definition:
class.ilHtmlForumPostPurifier.php:27
ilHtmlPurifierAbstractLibWrapper
Abstract class wrapping the HTMLPurifier instance.
Definition:
class.ilHtmlPurifierAbstractLibWrapper.php:25
ilObjAdvancedEditing\_getUsedHTMLTags
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.
Definition:
class.ilObjAdvancedEditing.php:42
Modules
Forum
classes
Purifier
class.ilHtmlForumPostPurifier.php
Generated on Fri Apr 4 2025 22:01:48 for ILIAS by
1.8.13 (using
Doxyfile
)