AuthBackendController: Inherit from `ipl\Web\Compat\CompatController`
This commit is contained in:
parent
fe51f8c968
commit
a4a658974d
|
@ -3,19 +3,26 @@
|
||||||
|
|
||||||
namespace Icinga\Web\Controller;
|
namespace Icinga\Web\Controller;
|
||||||
|
|
||||||
|
use ipl\Web\Compat\CompatController;
|
||||||
use Zend_Controller_Action_Exception;
|
use Zend_Controller_Action_Exception;
|
||||||
use Icinga\Application\Config;
|
use Icinga\Application\Config;
|
||||||
use Icinga\Authentication\User\UserBackend;
|
use Icinga\Authentication\User\UserBackend;
|
||||||
use Icinga\Authentication\User\UserBackendInterface;
|
use Icinga\Authentication\User\UserBackendInterface;
|
||||||
use Icinga\Authentication\UserGroup\UserGroupBackend;
|
use Icinga\Authentication\UserGroup\UserGroupBackend;
|
||||||
use Icinga\Authentication\UserGroup\UserGroupBackendInterface;
|
use Icinga\Authentication\UserGroup\UserGroupBackendInterface;
|
||||||
use Icinga\Web\Controller;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class for authentication backend controllers
|
* Base class for authentication backend controllers
|
||||||
*/
|
*/
|
||||||
class AuthBackendController extends Controller
|
class AuthBackendController extends CompatController
|
||||||
{
|
{
|
||||||
|
public function init()
|
||||||
|
{
|
||||||
|
parent::init();
|
||||||
|
|
||||||
|
$this->tabs->disableLegacyExtensions();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Redirect to this controller's list action
|
* Redirect to this controller's list action
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue