ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
OnScreenChat.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS
;
22
23
class
OnScreenChat
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[Component\Resource\PublicAsset::class] = fn() =>
36
new
Component\Resource\ComponentJS
($this,
"chat.js"
);
37
$contribute[Component\Resource\PublicAsset::class] = fn() =>
38
new
Component\Resource\ComponentJS
($this,
"moment.js"
);
39
$contribute[Component\Resource\PublicAsset::class] = fn() =>
40
new
Component\Resource\ComponentJS
($this,
"onscreenchat.js"
);
41
$contribute[Component\Resource\PublicAsset::class] = fn() =>
42
new
Component\Resource\ComponentJS
($this,
"onscreenchat-notifications.js"
);
43
}
44
}
ILIAS\OnScreenChat
Definition:
OnScreenChat.php:23
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\Component\Resource\ComponentJS
This is a js file provided by some component.
Definition:
ComponentJS.php:26
ArrayAccess
ILIAS\OnScreenChat\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:
OnScreenChat.php:25
components
ILIAS
OnScreenChat
OnScreenChat.php
Generated on Wed Sep 3 2025 23:03:34 for ILIAS by
1.8.13 (using
Doxyfile
)