mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
27 lines
620 B
PHP
Executable File
27 lines
620 B
PHP
Executable File
<?php
|
|
/**
|
|
* EGroupware - Home - user interface
|
|
*
|
|
* @link www.egroupware.org
|
|
* @author Nathan Gray
|
|
* @copyright (c) 2013 by Nathan Gray
|
|
* @package home
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
$GLOBALS['egw_info'] = array(
|
|
'flags' => array(
|
|
'noheader' => true,
|
|
'nonavbar' => true,
|
|
'currentapp' => 'home',
|
|
)
|
|
);
|
|
|
|
include('../header.inc.php');
|
|
$GLOBALS['egw_info']['flags']['nonavbar']=false;
|
|
|
|
// Home is treated specially, so a redirect won't work.
|
|
$home = new home_ui();
|
|
echo $home->index();
|