2002-02-06 10:03:11 +01:00
|
|
|
<?php
|
2006-04-20 19:12:30 +02:00
|
|
|
/**
|
|
|
|
* 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$
|
|
|
|
*/
|
2002-02-06 10:03:11 +01:00
|
|
|
|
2005-11-09 21:50:45 +01:00
|
|
|
$ui = ''; // html UI, which UI to use, should come from api and be in $GLOBALS['egw']???
|
2002-09-24 03:29:14 +02:00
|
|
|
if ($_ENV['DISPLAY'] && isset($_SERVER['_']))
|
2002-02-20 02:26:03 +01:00
|
|
|
{
|
|
|
|
$ui = '_gtk';
|
|
|
|
}
|
2005-11-09 21:50:45 +01:00
|
|
|
include_once(EGW_INCLUDE_ROOT . "/etemplate/inc/class.uietemplate$ui.inc.php");
|