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
10interface 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}
An exception for terminatinating execution or to throw for unit testing.
This is how a factory for Message Boxes looks like.
Definition: Factory.php:11