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
Id.php
Go to the documentation of this file.
1
<?php
2
6
class
HTMLPurifier_ConfigSchema_Interchange_Id
7
{
8
9
public
$key
;
10
11
public
function
__construct
(
$key
) {
12
$this->key =
$key
;
13
}
14
19
public
function
toString
() {
20
return
$this->key
;
21
}
22
23
public
function
getRootNamespace
() {
24
return
substr($this->key, 0, strpos($this->key,
"."
));
25
}
26
27
public
function
getDirective
() {
28
return
substr($this->key, strpos($this->key,
"."
) + 1);
29
}
30
31
public
static
function
make
($id) {
32
return
new
HTMLPurifier_ConfigSchema_Interchange_Id
($id);
33
}
34
35
}
36
37
// vim: et sw=4 sts=4
HTMLPurifier_ConfigSchema_Interchange_Id\make
static make($id)
Definition:
Id.php:31
HTMLPurifier_ConfigSchema_Interchange_Id\getRootNamespace
getRootNamespace()
Definition:
Id.php:23
HTMLPurifier_ConfigSchema_Interchange_Id\toString
toString()
Definition:
Id.php:19
HTMLPurifier_ConfigSchema_Interchange_Id\$key
$key
Definition:
Id.php:9
HTMLPurifier_ConfigSchema_Interchange_Id
Represents a directive ID in the interchange format.
Definition:
Id.php:6
HTMLPurifier_ConfigSchema_Interchange_Id\__construct
__construct($key)
Definition:
Id.php:11
HTMLPurifier_ConfigSchema_Interchange_Id\getDirective
getDirective()
Definition:
Id.php:27
Services
Html
HtmlPurifier
library
HTMLPurifier
ConfigSchema
Interchange
Id.php
Generated on Mon Dec 21 2020 19:01:15 for ILIAS by
1.8.13 (using
Doxyfile
)