ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ ilDoc Overview
WOPI.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS
;
22
23
class
WOPI
implements
Component\Component
24
{
25
public
function
init
(
26
array | \
ArrayAccess
&$define,
27
array | \
ArrayAccess
&$implement,
28
array | \
ArrayAccess
&$use,
29
array | \
ArrayAccess
&$contribute,
30
array | \
ArrayAccess
&$seek,
31
array | \
ArrayAccess
&$provide,
32
array | \
ArrayAccess
&$pull,
33
array | \
ArrayAccess
&$internal,
34
): void {
35
$contribute[\ILIAS\Setup\Agent::class] =
static
fn() =>
36
new \ilWOPISetupAgent(
37
$pull[\
ILIAS
\
Refinery
\Factory::class]
38
);
39
40
$contribute[Component\Resource\PublicAsset::class] = fn() =>
41
new
Component\Resource\Endpoint
($this,
"index.php"
,
"wopi"
);
42
43
$contribute[Component\Resource\PublicAsset::class] = fn() =>
44
new
Component\Resource\ComponentJS
($this,
"js/dist/wopi.min.js"
);
45
}
46
}
ILIAS\WOPI
Definition:
WOPI.php:23
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\Component\Resource\Endpoint
An endpoint is a PHP file that produces output via HTTP.
Definition:
Endpoint.php:28
ILIAS\WOPI\init
init(array|\ArrayAccess &$define, array|\ArrayAccess &$implement, array|\ArrayAccess &$use, array|\ArrayAccess &$contribute, array|\ArrayAccess &$seek, array|\ArrayAccess &$provide, array|\ArrayAccess &$pull, array|\ArrayAccess &$internal,)
Definition:
WOPI.php:25
Factory
ILIAS\Component\Resource\ComponentJS
This is a js file provided by some component.
Definition:
ComponentJS.php:26
ArrayAccess
components
ILIAS
WOPI
WOPI.php
Generated on Wed Sep 10 2025 15:16:56 for ILIAS by
1.8.13 (using
Doxyfile
)