ILIAS
release_4-4 Revision
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
Text.php
Go to the documentation of this file.
1
<?php
2
15
class
HTMLPurifier_HTMLModule_Text
extends
HTMLPurifier_HTMLModule
16
{
17
18
public
$name
=
'Text'
;
19
public
$content_sets
= array(
20
'Flow'
=>
'Heading | Block | Inline'
21
);
22
23
public
function
setup
($config) {
24
25
// Inline Phrasal -------------------------------------------------
26
$this->
addElement
(
'abbr'
,
'Inline'
,
'Inline'
,
'Common'
);
27
$this->
addElement
(
'acronym'
,
'Inline'
,
'Inline'
,
'Common'
);
28
$this->
addElement
(
'cite'
,
'Inline'
,
'Inline'
,
'Common'
);
29
$this->
addElement
(
'dfn'
,
'Inline'
,
'Inline'
,
'Common'
);
30
$this->
addElement
(
'kbd'
,
'Inline'
,
'Inline'
,
'Common'
);
31
$this->
addElement
(
'q'
,
'Inline'
,
'Inline'
,
'Common'
, array(
'cite'
=>
'URI'
));
32
$this->
addElement
(
'samp'
,
'Inline'
,
'Inline'
,
'Common'
);
33
$this->
addElement
(
'var'
,
'Inline'
,
'Inline'
,
'Common'
);
34
35
$em = $this->
addElement
(
'em'
,
'Inline'
,
'Inline'
,
'Common'
);
36
$em->formatting =
true
;
37
38
$strong = $this->
addElement
(
'strong'
,
'Inline'
,
'Inline'
,
'Common'
);
39
$strong->formatting =
true
;
40
41
$code = $this->
addElement
(
'code'
,
'Inline'
,
'Inline'
,
'Common'
);
42
$code->formatting =
true
;
43
44
// Inline Structural ----------------------------------------------
45
$this->
addElement
(
'span'
,
'Inline'
,
'Inline'
,
'Common'
);
46
$this->
addElement
(
'br'
,
'Inline'
,
'Empty'
,
'Core'
);
47
48
// Block Phrasal --------------------------------------------------
49
$this->
addElement
(
'address'
,
'Block'
,
'Inline'
,
'Common'
);
50
$this->
addElement
(
'blockquote'
,
'Block'
,
'Optional: Heading | Block | List'
,
'Common'
, array(
'cite'
=>
'URI'
) );
51
$pre = $this->
addElement
(
'pre'
,
'Block'
,
'Inline'
,
'Common'
);
52
$pre->excludes = $this->
makeLookup
(
53
'img'
,
'big'
,
'small'
,
'object'
,
'applet'
,
'font'
,
'basefont'
);
54
$this->
addElement
(
'h1'
,
'Heading'
,
'Inline'
,
'Common'
);
55
$this->
addElement
(
'h2'
,
'Heading'
,
'Inline'
,
'Common'
);
56
$this->
addElement
(
'h3'
,
'Heading'
,
'Inline'
,
'Common'
);
57
$this->
addElement
(
'h4'
,
'Heading'
,
'Inline'
,
'Common'
);
58
$this->
addElement
(
'h5'
,
'Heading'
,
'Inline'
,
'Common'
);
59
$this->
addElement
(
'h6'
,
'Heading'
,
'Inline'
,
'Common'
);
60
61
// Block Structural -----------------------------------------------
62
$p = $this->
addElement
(
'p'
,
'Block'
,
'Inline'
,
'Common'
);
63
$p->autoclose = array_flip(array(
"address"
,
"blockquote"
,
"center"
,
"dir"
,
"div"
,
"dl"
,
"fieldset"
,
"ol"
,
"p"
,
"ul"
));
64
65
$this->
addElement
(
'div'
,
'Block'
,
'Flow'
,
'Common'
);
66
67
}
68
69
}
70
71
// vim: et sw=4 sts=4
HTMLPurifier_HTMLModule_Text\$content_sets
$content_sets
Definition:
Text.php:19
HTMLPurifier_HTMLModule\makeLookup
makeLookup($list)
Convenience function that generates a lookup table with boolean true as value.
Definition:
HTMLModule.php:224
HTMLPurifier_HTMLModule_Text
XHTML 1.1 Text Module, defines basic text containers.
Definition:
Text.php:15
HTMLPurifier_HTMLModule\addElement
addElement($element, $type, $contents, $attr_includes=array(), $attr=array())
Convenience function that sets up a new element.
Definition:
HTMLModule.php:130
HTMLPurifier_HTMLModule_Text\$name
$name
Definition:
Text.php:18
HTMLPurifier_HTMLModule
Represents an XHTML 1.1 module, with information on elements, tags and attributes.
Definition:
HTMLModule.php:18
HTMLPurifier_HTMLModule_Text\setup
setup($config)
Definition:
Text.php:23
Services
Html
HtmlPurifier
library
HTMLPurifier
HTMLModule
Text.php
Generated on Mon Dec 21 2020 19:01:15 for ILIAS by
1.8.13 (using
Doxyfile
)