ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Actions.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
28
29 public function __construct(
33 ) {
34 $this->link_provider = $link_provider;
35 $this->button_factory = $button_factory;
36 $this->modal_factory = $modal_factory;
37 }
38
39 public function getModal(): ModalFactory
40 {
42 }
43
44 public function getButton(): ButtonFactory
45 {
47 }
48
49 public function getLink(): LinkProvider
50 {
52 }
53}
__construct(LinkProvider $link_provider, ButtonFactory $button_factory, ModalFactory $modal_factory)
Definition: Actions.php:29