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

32 lines
766 B
PHP

<?php
/**
* IMP smartmobile view.
*
* Copyright 2010-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.
*
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @copyright 2010-2017 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
require_once __DIR__ . '/lib/Application.php';
Horde_Registry::appInit('imp', array(
'impmode' => Horde_Registry::VIEW_SMARTMOBILE
));
$ob = new IMP_Smartmobile($injector->getInstance('Horde_Variables'));
$page_output->header(array(
'title' => _("Mail"),
'view' => $registry::VIEW_SMARTMOBILE
));
$ob->render();
$page_output->footer();