ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Test.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS;
22 
23 class Test 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 \ILIAS\Test\Setup\TestSetupAgent(
37  $pull[\ILIAS\Refinery\Factory::class]
38  );
39  $contribute[Component\Resource\PublicAsset::class] = fn() =>
40  new Component\Resource\ComponentJS($this, "ilTestPlayerQuestionEditControl.js");
41  $contribute[Component\Resource\PublicAsset::class] = fn() =>
42  new Component\Resource\ComponentJS($this, "settings_confirmation.js");
43  $contribute[Component\Resource\PublicAsset::class] = fn() =>
44  new Component\Resource\ComponentCSS($this, "test_kiosk_header.css");
45  $contribute[Component\Resource\PublicAsset::class] = fn() =>
46  new Component\Resource\ComponentCSS($this, "test_pdf.css");
47  $contribute[Component\Resource\PublicAsset::class] = fn() =>
48  new Component\Resource\ComponentCSS($this, "test_print.css");
49  $contribute[Component\Resource\PublicAsset::class] = fn() =>
50  new Component\Resource\ComponentCSS($this, "test_print_hide_content.css");
51  }
52 }
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: Test.php:25
Interface Observer Contains several chained tasks and infos about them.
This is a js file provided by some component.
Definition: ComponentJS.php:26
This is a css file provided by some component.