ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
26 interface 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 }
failure(string $message_text)
description: purpose: > The system failed to complete some actions and displays information about th...
success(string $message_text)
description: purpose: > The system succeeded in finishing some action and displays a success message...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
confirmation(string $message_text)
description: purpose: > The system makes sure that an action should really be performed.
info(string $message_text)
description: purpose: > The system informs the user about obstacles standing in the way of completin...