ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
class.ilRestServer.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
5
6
use
Slim\App
;
7
13
class
ilRestServer
extends
App
14
{
18
public
function
init
(): void
19
{
20
$callback_obj =
new
ilRestFileStorage
();
21
$this->
get
(
'/fileStorage'
, array($callback_obj,
'getFile'
));
22
$this->post(
'/fileStorage'
, array($callback_obj,
'createFile'
));
23
$callback_obj->deleteDeprecated();
24
}
25
}
ilRestServer\init
init()
Init server / add handlers.
Definition:
class.ilRestServer.php:18
ilRestServer
Slim rest server.
Definition:
class.ilRestServer.php:13
ilRestFileStorage
File storage handling.
Definition:
class.ilRestFileStorage.php:14
App
Services
WebServices
Rest
classes
class.ilRestServer.php
Generated on Mon Sep 1 2025 22:02:51 for ILIAS by
1.8.13 (using
Doxyfile
)