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
Boolean.php
Go to the documentation of this file.
1
<?php
2
3
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4 foldmethod=marker: */
4
5
// LICENSE AGREEMENT. If folded, press za here to unfold and read license {{{
6
40
// }}}
41
42
// dependencies {{{
43
require_once
'XML/RPC2/Exception.php'
;
44
require_once
'XML/RPC2/Backend/Php/Value/Scalar.php'
;
45
// }}}
46
57
class
XML_RPC2_Backend_Php_Value_Boolean
extends
XML_RPC2_Backend_Php_Value_Scalar
58
{
59
60
// {{{ constructor
61
67
public
function
__construct
($nativeValue)
68
{
69
parent::__construct(
'boolean'
, $nativeValue);
70
}
71
72
// }}}
73
// {{{ encode()
74
80
public
function
encode
()
81
{
82
return
'<boolean>'
. ($this->
getNativeValue
() ? 1 : 0).
'</boolean>'
;
83
}
84
85
// }}}
86
// {{{ decode()
87
93
public
static
function
decode
($xml)
94
{
95
// TODO Remove reparsing of XML fragment, when SimpleXML proves more solid. Currently it segfaults when
96
// xpath is used both in an element and in one of its children
97
$xml = simplexml_load_string($xml->asXML());
98
$value = $xml->xpath(
'/value/boolean/text()'
);
99
100
// Double cast explanation: http://pear.php.net/bugs/bug.php?id=8644
101
return
(
boolean
) ((string) $value[0]);
102
}
103
104
// }}}
105
106
}
107
108
?>
XML_RPC2_Backend_Php_Value_Scalar
Definition:
Scalar.php:57
XML_RPC2_Backend_Php_Value_Boolean\decode
static decode($xml)
decode.
Definition:
Boolean.php:93
XML_RPC2_Backend_Php_Value\getNativeValue
getNativeValue()
nativeValue property getter
Definition:
Value.php:76
XML_RPC2_Backend_Php_Value_Boolean\__construct
__construct($nativeValue)
Constructor.
Definition:
Boolean.php:67
XML_RPC2_Backend_Php_Value_Boolean
Definition:
Boolean.php:57
XML_RPC2_Backend_Php_Value_Boolean\encode
encode()
Encode the instance into XML, for transport.
Definition:
Boolean.php:80
Services
PEAR
lib
XML
RPC2
Backend
Php
Value
Boolean.php
Generated on Mon Dec 21 2020 19:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)