ILIAS
Release_4_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
CallHandler.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
// }}}
45
70
abstract
class
XML_RPC2_Server_CallHandler
71
{
72
73
// {{{ properties
74
80
protected
$methods
= array();
81
82
// }}}
83
// {{{ getMethods()
84
90
public
function
getMethods
()
91
{
92
return
$this->methods
;
93
}
94
95
// }}}
96
// {{{ addMethod()
97
103
protected
function
addMethod
(
XML_RPC2_Server_Method
$method
)
104
{
105
$this->methods[$method->
getName
()] =
$method
;
106
}
107
108
// }}}
109
// {{{ getMethod()
110
117
public
function
getMethod
(
$name
)
118
{
119
if
(isset($this->methods[
$name
])) {
120
return
$this->methods[
$name
];
121
}
122
return
false
;
123
}
124
125
// }}}
126
127
}
128
129
?>
Services
PEAR
lib
XML
RPC2
Server
CallHandler.php
Generated on Wed Apr 27 2016 19:01:48 for ILIAS by
1.8.1.2 (using
Doxyfile
)