ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
Async.php
Go to the documentation of this file.
1<?php
2
18declare(strict_types=1);
19
21
24
28class Async extends Node implements C\Input\Field\Node\Async
29{
31 public function __construct(
32 protected URI $render_url,
33 array $full_node_path,
34 string $name,
35 ?C\Symbol\Icon\Icon $icon
36 ) {
37 parent::__construct($full_node_path, $name, $icon);
38 }
39
40 public function getRenderUrl(): URI
41 {
42 return $this->render_url;
43 }
44}
The scope of this class is split ilias-conform URI's into components.
Definition: URI.php:35
__construct(protected URI $render_url, array $full_node_path, string $name, ?C\Symbol\Icon\Icon $icon)
@inheritDoc
Definition: Async.php:31
This describes a symbol.
Definition: Symbol.php:30
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc