blob: d93f509c82b1e32cecffc84a532ea5c334cde97e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* Generic interface for messages that may be displayed in Stud.IP at the
* top of the layout's content.
*
* @author Jan-Hendrik Willms <tleilax+studip@gmail.com>
* @license GPL2 or any later version
* @since Stud.IP 4.2
*/
interface LayoutMessage extends Stringable
{
/**
* Renders the message as html.
*
* @return string
*/
public function __toString();
}
|