if (!defined('ALLOWED')) die('Appel direct ne sont pas permis'); if ( ! defined ("AJAX_TEST")) { echo "Can not be called directly but via ajax_test.php"; return; } /** * @file * @brief Test the ajax call from test_manage_table_sql.php */ $http=new HttpInput(); try { $table=$http->request('table'); $action=$http->request('action'); $p_id=$http->request('p_id', "number"); $ctl_id=$http->request('ctl'); } catch(Exception $e) { echo $e->getMessage(); } require_once NOALYSS_INCLUDE."/lib/manage_table_sql.class.php"; require_once NOALYSS_INCLUDE."/class/acc_plan_mtable.class.php"; $obj=new Acc_Plan_SQL($cn); $obj->set_limit_fiche_qcode(5); $obj->set_pk_value($p_id); $obj->load(); $manage_table=new Acc_Plan_MTable($obj); $manage_table->add_json_param("TestAjaxFile", NOALYSS_HOME."/../scenario/ajax_acc_plan_mtable.php"); $manage_table->set_object_name($ctl_id); $manage_table->set_callback("ajax_test.php"); if ($action=="input") { header('Content-type: text/xml; charset=UTF-8'); echo $manage_table->ajax_input()->saveXML(); return; } elseif ($action == "save") { $xml=$manage_table->ajax_save(); header('Content-type: text/xml; charset=UTF-8'); echo $xml->saveXML(); }