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
Object.php
Go to the documentation of this file.
1
<?php
2
8
class
HTMLPurifier_HTMLModule_Object
extends
HTMLPurifier_HTMLModule
9
{
10
11
public
$name
=
'Object'
;
12
public
$safe
=
false
;
13
14
public
function
setup
($config) {
15
16
$this->
addElement
(
'object'
,
'Inline'
,
'Optional: #PCDATA | Flow | param'
,
'Common'
,
17
array(
18
'archive'
=>
'URI'
,
19
'classid'
=>
'URI'
,
20
'codebase'
=>
'URI'
,
21
'codetype'
=>
'Text'
,
22
'data'
=>
'URI'
,
23
'declare'
=>
'Bool#declare'
,
24
'height'
=>
'Length'
,
25
'name'
=>
'CDATA'
,
26
'standby'
=>
'Text'
,
27
'tabindex'
=>
'Number'
,
28
'type'
=>
'ContentType'
,
29
'width'
=>
'Length'
30
)
31
);
32
33
$this->
addElement
(
'param'
,
false
,
'Empty'
,
false
,
34
array(
35
'id'
=>
'ID'
,
36
'name*'
=>
'Text'
,
37
'type'
=>
'Text'
,
38
'value'
=>
'Text'
,
39
'valuetype'
=>
'Enum#data,ref,object'
40
)
41
);
42
43
}
44
45
}
46
47
// vim: et sw=4 sts=4
HTMLPurifier_HTMLModule_Object\setup
setup($config)
Definition:
Object.php:14
HTMLPurifier_HTMLModule_Object\$name
$name
Definition:
Object.php:11
HTMLPurifier_HTMLModule_Object
XHTML 1.1 Object Module, defines elements for generic object inclusion.
Definition:
Object.php:8
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_Object\$safe
$safe
Definition:
Object.php:12
HTMLPurifier_HTMLModule
Represents an XHTML 1.1 module, with information on elements, tags and attributes.
Definition:
HTMLModule.php:18
Services
Html
HtmlPurifier
library
HTMLPurifier
HTMLModule
Object.php
Generated on Mon Dec 21 2020 19:01:15 for ILIAS by
1.8.13 (using
Doxyfile
)