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
26interface Factory
27{
46 public function failure(string $message_text): MessageBox;
47
65 public function success(string $message_text): MessageBox;
66
87 public function info(string $message_text): MessageBox;
88
105 public function confirmation(string $message_text): MessageBox;
106}
This is how a factory for Message Boxes looks like.
Definition: Factory.php:27
confirmation(string $message_text)