* * -------------------------------------------- * * 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. * \**************************************************************************/ /* $Id$ */ /* $Source$ */ require_once('./phpgwapi/inc/xajax.inc.php'); function doXMLHTTP() { $numargs = func_num_args(); if($numargs < 1) return false; $argList = func_get_args(); $arg0 = array_shift($argList); list($appName, $className, $functionName) = explode('.',$arg0); if(substr($className,0,4) != 'ajax') { // stopped for security reasons error_log($_SERVER["PHP_SELF"]. ' stopped for security reason. className '.$className.' is not valid. className must start with ajax!!!'); exit; } $GLOBALS['egw_info'] = array(); $GLOBALS['egw_info']['flags'] = array( 'currentapp' => $appName, 'noheader' => True, 'disable_Template_class' => True, ); include('./header.inc.php'); $sessionid = get_var('sessionid',array('COOKIE','GET')); $kp3 = get_var('kp3',array('COOKIE','GET')); // the session has been created already // the browser is sending all needed egroupware cookies if($GLOBALS['phpgw']->session->verify($sessionid,$kp3)) { $ajaxClass = CreateObject("$appName.$className"); return call_user_func_array(array(&$ajaxClass, $functionName), $argList ); } } $xajax = new xajax($_SERVER["PHP_SELF"]); $xajax->registerFunction("doXMLHTTP"); $xajax->processRequests(); ?>