2002-02-06 10:03:11 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2004-01-27 17:58:19 +01:00
|
|
|
* eGroupWare - EditableTemplates *
|
|
|
|
* http://www.egroupware.org *
|
2002-02-06 10:03:11 +01:00
|
|
|
* Written by Ralf Becker <RalfBecker@outdoor-training.de> *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
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");
|