11 lines
158 B
PHP
11 lines
158 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Web\View;
|
||
|
|
||
|
use Icinga\Authentication\Manager;
|
||
|
|
||
|
$this->addHelperFunction('auth', function () {
|
||
|
return Manager::getInstance();
|
||
|
});
|
||
|
|