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
List.php
Go to the documentation of this file.
1
<?php
2
6
class
HTMLPurifier_HTMLModule_List
extends
HTMLPurifier_HTMLModule
7
{
8
9
public
$name
=
'List'
;
10
11
// According to the abstract schema, the List content set is a fully formed
12
// one or more expr, but it invariably occurs in an optional declaration
13
// so we're not going to do that subtlety. It might cause trouble
14
// if a user defines "List" and expects that multiple lists are
15
// allowed to be specified, but then again, that's not very intuitive.
16
// Furthermore, the actual XML Schema may disagree. Regardless,
17
// we don't have support for such nested expressions without using
18
// the incredibly inefficient and draconic Custom ChildDef.
19
20
public
$content_sets
= array(
'Flow'
=>
'List'
);
21
22
public
function
setup
($config) {
23
$ol = $this->
addElement
(
'ol'
,
'List'
,
new
HTMLPurifier_ChildDef_List
(),
'Common'
);
24
$ul = $this->
addElement
(
'ul'
,
'List'
,
new
HTMLPurifier_ChildDef_List
(),
'Common'
);
25
// XXX The wrap attribute is handled by MakeWellFormed. This is all
26
// quite unsatisfactory, because we generated this
27
// *specifically* for lists, and now a big chunk of the handling
28
// is done properly by the List ChildDef. So actually, we just
29
// want enough information to make autoclosing work properly,
30
// and then hand off the tricky stuff to the ChildDef.
31
$ol->wrap =
'li'
;
32
$ul->wrap =
'li'
;
33
$this->
addElement
(
'dl'
,
'List'
,
'Required: dt | dd'
,
'Common'
);
34
35
$this->
addElement
(
'li'
,
false
,
'Flow'
,
'Common'
);
36
37
$this->
addElement
(
'dd'
,
false
,
'Flow'
,
'Common'
);
38
$this->
addElement
(
'dt'
,
false
,
'Inline'
,
'Common'
);
39
}
40
41
}
42
43
// vim: et sw=4 sts=4
HTMLPurifier_ChildDef_List
Definition for list containers ul and ol.
Definition:
List.php:6
HTMLPurifier_HTMLModule_List\$name
$name
Definition:
List.php:9
HTMLPurifier_HTMLModule_List\$content_sets
$content_sets
Definition:
List.php:20
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_List\setup
setup($config)
Definition:
List.php:22
HTMLPurifier_HTMLModule
Represents an XHTML 1.1 module, with information on elements, tags and attributes.
Definition:
HTMLModule.php:18
HTMLPurifier_HTMLModule_List
XHTML 1.1 List Module, defines list-oriented elements.
Definition:
List.php:6
Services
Html
HtmlPurifier
library
HTMLPurifier
HTMLModule
List.php
Generated on Mon Dec 21 2020 19:01:15 for ILIAS by
1.8.13 (using
Doxyfile
)