blob: 7072788490fa20ed7d0ecceed57bbefb9e69c5c7 (
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
{
/**
* Renders the message as html.
*
* @return string
*/
public function __toString();
}
|