ILIAS  trunk Revision v11.0_alpha-1866-gfa368f7776e
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilSoapUserAdministrationAdapter Class Reference

adapter class for nusoap server More...

+ Collaboration diagram for ilSoapUserAdministrationAdapter:

Public Member Functions

 __construct ()
 
 start ()
 

Data Fields

SoapServer $server
 

Private Member Functions

 registerMethods ()
 

Detailed Description

adapter class for nusoap server

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om

Definition at line 24 of file class.ilSoapUserAdministrationAdapter.php.

Constructor & Destructor Documentation

◆ __construct()

ilSoapUserAdministrationAdapter::__construct ( )

Definition at line 28 of file class.ilSoapUserAdministrationAdapter.php.

References null, registerMethods(), and ILIAS\UI\examples\Progress\Bar\server().

29  {
30  $this->server = new SoapServer(null);
31  $this->registerMethods();
32  }
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
Definition: server.php:43
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

Member Function Documentation

◆ registerMethods()

ilSoapUserAdministrationAdapter::registerMethods ( )
private

Definition at line 41 of file class.ilSoapUserAdministrationAdapter.php.

References ILIAS\UI\examples\Progress\Bar\server().

Referenced by __construct().

41  : void
42  {
43  include_once './components/ILIAS/soap/include/inc.soap_functions.php';
44 
45  $this->server->addFunction(SOAP_FUNCTIONS_ALL);
46  }
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
Definition: server.php:43
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ start()

ilSoapUserAdministrationAdapter::start ( )

Definition at line 34 of file class.ilSoapUserAdministrationAdapter.php.

References $_SERVER, and ILIAS\UI\examples\Progress\Bar\server().

34  : void
35  {
36  if ($_SERVER['REQUEST_METHOD'] === 'POST') {
37  $this->server->handle();
38  }
39  }
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
Definition: server.php:43
$_SERVER['HTTP_HOST']
Definition: raiseError.php:26
+ Here is the call graph for this function:

Field Documentation

◆ $server

SoapServer ilSoapUserAdministrationAdapter::$server

Definition at line 26 of file class.ilSoapUserAdministrationAdapter.php.


The documentation for this class was generated from the following file: