ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ ilDoc Overview
class.ilSoapUserAdministrationAdapter.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=0);
4
/*
5
+-----------------------------------------------------------------------------+
6
| ILIAS open source |
7
+-----------------------------------------------------------------------------+
8
| Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
9
| |
10
| This program is free software; you can redistribute it and/or |
11
| modify it under the terms of the GNU General Public License |
12
| as published by the Free Software Foundation; either version 2 |
13
| of the License, or (at your option) any later version. |
14
| |
15
| This program is distributed in the hope that it will be useful, |
16
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
17
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18
| GNU General Public License for more details. |
19
| |
20
| You should have received a copy of the GNU General Public License |
21
| along with this program; if not, write to the Free Software |
22
| Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
23
+-----------------------------------------------------------------------------+
24
*/
25
30
class
ilSoapUserAdministrationAdapter
31
{
32
public
SoapServer
$server
;
33
34
public
function
__construct
()
35
{
36
$this->
server
=
new
SoapServer(null);
37
$this->
registerMethods
();
38
}
39
40
public
function
start
(): void
41
{
42
if
(
$_SERVER
[
'REQUEST_METHOD'
] ===
'POST'
) {
43
$this->
server
->handle();
44
}
45
}
46
47
private
function
registerMethods
(): void
48
{
49
include_once
'./components/ILIAS/soap/include/inc.soap_functions.php'
;
50
51
$this->
server
->addFunction(SOAP_FUNCTIONS_ALL);
52
}
53
}
ilSoapUserAdministrationAdapter\__construct
__construct()
Definition:
class.ilSoapUserAdministrationAdapter.php:34
ILIAS\UI\examples\Progress\Bar\server
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
Definition:
server.php:27
ilSoapUserAdministrationAdapter\$server
SoapServer $server
Definition:
class.ilSoapUserAdministrationAdapter.php:32
ilSoapUserAdministrationAdapter
adapter class for nusoap server
Definition:
class.ilSoapUserAdministrationAdapter.php:30
$_SERVER
$_SERVER['HTTP_HOST']
Definition:
raiseError.php:10
ilSoapUserAdministrationAdapter\registerMethods
registerMethods()
Definition:
class.ilSoapUserAdministrationAdapter.php:47
ilSoapUserAdministrationAdapter\start
start()
Definition:
class.ilSoapUserAdministrationAdapter.php:40
components
ILIAS
soap
classes
class.ilSoapUserAdministrationAdapter.php
Generated on Wed Sep 10 2025 15:16:22 for ILIAS by
1.8.13 (using
Doxyfile
)