ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Factory.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2018 Thomas Famula <famula@leifos.de> Extended GPL, see docs/LICENSE */
4 
6 
10 interface Factory
11 {
32  public function failure($message_text);
33 
52  public function success($message_text);
53 
75  public function info($message_text);
76 
94  public function confirmation($message_text);
95 }
This is how a factory for Message Boxes looks like.
Definition: Factory.php:10
confirmation($message_text)
description: purpose: > The system makes sure that an action should really be performed.
success($message_text)
description: purpose: > The system succeeded in finishing some action and displays a success message...
info($message_text)
description: purpose: > The system informs the user about obstacles standing in the way of completin...
failure($message_text)
description: purpose: > The system failed to complete some actions and displays information about th...