mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
18 lines
523 B
PHP
18 lines
523 B
PHP
<?php
|
|
/**
|
|
* eGroupWare - EditableTemplates
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package etemplate
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
|
* @version $Id$
|
|
*/
|
|
|
|
$ui = ''; // html UI, which UI to use, should come from api and be in $GLOBALS['egw']???
|
|
if ($_ENV['DISPLAY'] && isset($_SERVER['_']))
|
|
{
|
|
$ui = '_gtk';
|
|
}
|
|
include_once(EGW_INCLUDE_ROOT . "/etemplate/inc/class.uietemplate$ui.inc.php");
|