mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-05 07:10:13 +02:00
* May be subject to change * TODO: Find out how to phpDoc them * Removed a bunch of "old-style" view helpers * more to come
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();
|
|
});
|
|
|