ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
index.php
Go to the documentation of this file.
1
<?php
2
3
// this is the base file for WOPI requests. It responds to the following requests:
4
// - CheckFileInfo
5
// - GetFile
6
// - PutFile
7
// - Lock
8
// - Unlock
9
10
// INIT ILIAS
11
use
ILIAS\Services\WOPI\Handler\RequestHandler
;
12
13
chdir(
"../"
);
14
require_once __DIR__ .
"/../libs/composer/vendor/autoload.php"
;
15
ilInitialisation::initILIAS
();
16
17
// handle all requests behind /wopi/index.php/
18
$handler
=
new
RequestHandler
();
19
$handler
->handleRequest();
ILIAS\Services\WOPI\Handler\RequestHandler
Definition:
RequestHandler.php:32
ilInitialisation\initILIAS
static initILIAS()
ilias initialisation
Definition:
class.ilInitialisation.php:1209
RequestHandler
$handler
$handler
Definition:
index.php:18
wopi
index.php
Generated on Wed Sep 10 2025 14:10:28 for ILIAS by
1.8.13 (using
Doxyfile
)