ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilRestServer.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20use Slim\App;
21
27class ilRestServer extends App
28{
32 public function init(): void
33 {
34 $callback_obj = new ilRestFileStorage();
35 $this->get('/fileStorage', array($callback_obj,'getFile'));
36 $this->post('/fileStorage', array($callback_obj,'createFile'));
37 $callback_obj->deleteDeprecated();
38 }
39}
File storage handling.
Slim rest server.
init()
Init server / add handlers.