Files
server/usr/share/psa-horde/imp/lib/Minimal/Error.php
2026-01-07 20:52:11 +01:00

34 lines
786 B
PHP

<?php
/**
* Copyright 2013-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.horde.org/licenses/gpl.
*
* @category Horde
* @copyright 2013-2017 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
/**
* Used to dispay menu when fatal error occurs in minimal view.
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @copyright 2013-2017 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
class IMP_Minimal_Error extends IMP_Minimal_Base
{
/**
*/
protected function _init()
{
$this->view->menu = $this->getMenu('');
$this->_pages[] = 'menu';
}
}