2017-05-11 22:34:32 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace ManiaControl\Manialinks;
|
|
|
|
|
2017-05-11 22:35:16 +02:00
|
|
|
/**
|
|
|
|
* Interface for the Sidebar managing
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
|
|
* @copyright 2014-2017 ManiaControl Team
|
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
|
|
*/
|
2017-05-11 22:34:32 +02:00
|
|
|
|
2017-05-11 22:35:16 +02:00
|
|
|
interface SidebarMenuEntryRenderable {
|
|
|
|
|
|
|
|
/**
|
2017-05-12 11:04:26 +02:00
|
|
|
* Call here the function which updates the MenuIcon ManiaLink
|
2017-05-11 22:35:16 +02:00
|
|
|
*/
|
2017-05-11 22:37:17 +02:00
|
|
|
public function renderMenuEntry();
|
2017-05-11 22:34:32 +02:00
|
|
|
}
|