ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Chart.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS;
22
23class Chart 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, "excanvas.min.js");
37 $contribute[Component\Resource\PublicAsset::class] = fn() =>
38 new Component\Resource\ComponentJS($this, "jquery.flot.min.js");
39 $contribute[Component\Resource\PublicAsset::class] = fn() =>
40 new Component\Resource\ComponentJS($this, "jquery.flot.resize.min.js");
41 $contribute[Component\Resource\PublicAsset::class] = fn() =>
42 new Component\Resource\ComponentJS($this, "jquery.flot.stack.min.js");
43 $contribute[Component\Resource\PublicAsset::class] = fn() =>
44 new Component\Resource\ComponentJS($this, "jquery.flot.pie.js");
45 $contribute[Component\Resource\PublicAsset::class] = fn() =>
46 new Component\Resource\ComponentJS($this, "jquery.flot.highlighter.js");
47 $contribute[Component\Resource\PublicAsset::class] = fn() =>
48 new Component\Resource\ComponentJS($this, "jquery.flot.spider.js");
49 }
50}
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: Chart.php:25
This is a js file provided by some component.
Definition: ComponentJS.php:27
An public asset is a file or folder that should be served via the web.
Definition: PublicAsset.php:27
A component is the most general form of an entity in the UI.
Definition: Component.php:28
Interface Observer \BackgroundTasks Contains several chained tasks and infos about them.