ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilRestServer.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once './Services/WebServices/Rest/classes/class.ilRestFileStorage.php';
5 
11 class ilRestServer extends Slim\App
12 {
17  public function __construct($container = [])
18  {
20  }
21 
22 
26  public function init()
27  {
28  $callback_obj = new ilRestFileStorage();
29 
30  $this->get('/fileStorage', array($callback_obj,'getFile'));
31  $this->post('/fileStorage', array($callback_obj,'createFile'));
32 
33 
34  $callback_obj->deleteDeprecated();
35  }
36 }
init()
Init server / add handlers.
__construct($container=[])
ilRestServer constructor.
$container
Definition: wac.php:13
Slim rest server.
File storage handling.
__construct(Container $dic, ilPlugin $plugin)