From ed98ea28e09436ea54208ae1ecae01718554b0e9 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 2 Jun 2002 21:13:04 +0000 Subject: [PATCH] a first test for phpGroupWare (only eTemplate apps) under Gtk --- etemplate/phpGtk_test.php | 40 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 etemplate/phpGtk_test.php diff --git a/etemplate/phpGtk_test.php b/etemplate/phpGtk_test.php new file mode 100755 index 0000000000..120b0a0a0d --- /dev/null +++ b/etemplate/phpGtk_test.php @@ -0,0 +1,40 @@ +#!/usr/local/bin/php -q + + * + * -------------------------------------------- * + * 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$ */ + +//echo "Hello World!!!\n"; + +// To be able to test eTemplates with phpGtk you need a standalone/cgi php interpreter with compiled-in phpGtk installed +// (for instruction on how to do so look at the phpGtk website http://gtk.php.net/). + +// As phpGroupWare is not programmed as eTemplate (at least not know) you need to log in via Web and the session-id need to be +// passed in the url, so you can read it and put it in the following lines (it NEED to be an active session). + +$GLOBALS['HTTP_GET_VARS'] = array( + 'sessionid' => '2567b6b82e8e8f1ceb6f399342834d92', + 'kp3' => '5f9dc297f3c4739f92664359ffaf612e', + 'domain' => 'default' +); + +$GLOBALS['phpgw_info']['flags'] = array( + 'currentapp' => 'etemplate', + 'noheader' => True, + 'nonavbar' => True +); +include('../header.inc.php'); + +ExecMethod('etemplate.db_tools.edit'); + +$GLOBALS['phpgw']->common->phpgw_exit();