ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ComponentJS.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Component\Resource;
22 
26 class ComponentJS extends OfComponent
27 {
28  public const TARGET = "assets/js";
29 
34  public function __construct(
35  \ILIAS\Component\Component $component,
36  string $source,
37  ) {
38  parent::__construct($component, $source, self::TARGET);
39  }
40 }
Interface Observer Contains several chained tasks and infos about them.
This is a js file provided by some component.
Definition: ComponentJS.php:26
__construct(Container $dic, ilPlugin $plugin)
An public asset that is a resource of some component.
Definition: OfComponent.php:26
__construct(\ILIAS\Component\Component $component, string $source,)
Definition: ComponentJS.php:34