ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
27class Factory implements Launcher\Factory
28{
30
31 public function __construct(Modal\Factory $modal_factory)
32 {
33 $this->modal_factory = $modal_factory;
34 }
35
36 public function inline(Link $target): Inline
37 {
38 return new Inline($this->modal_factory, $target);
39 }
40}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:31
__construct(Modal\Factory $modal_factory)
Definition: Factory.php:31
This describes commonalities between the different modals.
Definition: Modal.php:35