2015-09-28 14:48:54 +02:00
|
|
|
<?php
|
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
|
|
|
|
namespace Icinga\Web\Navigation\Renderer;
|
|
|
|
|
|
|
|
use Icinga\Web\Navigation\NavigationItem;
|
|
|
|
|
|
|
|
class LogoutNavigationItemRenderer extends NavigationItemRenderer
|
|
|
|
{
|
|
|
|
public function render(NavigationItem $item = null)
|
|
|
|
{
|
2015-09-28 16:40:16 +02:00
|
|
|
return parent::render($item);
|
2015-09-28 14:48:54 +02:00
|
|
|
}
|
|
|
|
}
|