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
Clone.php
Go to the documentation of this file.
1
<?php
2
7
class
HTMLPurifier_AttrDef_Clone
extends
HTMLPurifier_AttrDef
8
{
12
protected
$clone
;
13
14
public
function
__construct
(
$clone
) {
15
$this->clone =
$clone
;
16
}
17
18
public
function
validate
($v, $config, $context) {
19
return
$this->clone->validate($v, $config, $context);
20
}
21
22
public
function
make
($string) {
23
return
clone
$this->clone
;
24
}
25
26
}
27
28
// vim: et sw=4 sts=4
HTMLPurifier_AttrDef_Clone\$clone
$clone
What we're cloning.
Definition:
Clone.php:12
HTMLPurifier_AttrDef
Base class for all validating attribute definitions.
Definition:
AttrDef.php:13
HTMLPurifier_AttrDef_Clone\make
make($string)
Definition:
Clone.php:22
HTMLPurifier_AttrDef_Clone\validate
validate($v, $config, $context)
Definition:
Clone.php:18
HTMLPurifier_AttrDef_Clone\__construct
__construct($clone)
Definition:
Clone.php:14
HTMLPurifier_AttrDef_Clone
Dummy AttrDef that mimics another AttrDef, BUT it generates clones with make.
Definition:
Clone.php:7
Services
Html
HtmlPurifier
library
HTMLPurifier
AttrDef
Clone.php
Generated on Mon Dec 21 2020 19:01:15 for ILIAS by
1.8.13 (using
Doxyfile
)