icingaweb2/library/Icinga/Web/Hook/TopBarHook.php
Alexander Klimov 7ff51caed0 Remove leading backslashes from the targets of use statements
- use \Exception;
+ use Exception;
2014-08-27 15:51:49 +02:00

24 lines
408 B
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Web\Hook;
use Icinga\Web\Request;
use Zend_View;
/**
* Hook to extend topbar items
*/
abstract class TopBarHook extends WebBaseHook
{
/**
* Function to generate top bar content
*
* @param Request $request
*
* @return string
*/
abstract public function getHtml($request);
}