/** * Permite regresar un XML con formato valido para DHTMLX * Ultima revision: 2012-02-22 * Reviso: Martin Tlapa * @param type $respuesta * @param type $type * @param type $sid - ID para CRUD * @param type $tid - ID respuesta de CRUD. Ver Data Proceesor en DHTMLX * @return type */ function response_xml($respuesta = null, $type = null, $sid = null, $tid = null) { $sid = $sid ? $sid : $this->get_id(); $tid = $tid ? $tid : $sid; return DHTMLX::response_xml($respuesta && $type ? $type : $this->get_cmd(), $respuesta && $type ? $respuesta : "", $sid, $tid); }
/** * Imprime un XML como respuesta a una peticion CRUD * Ultima revision: 2012-02-22 * Reviso: Martin Tlapa * @param type $type * @param type $respuesta XML */ public static function response_xml_prt($type, $respuesta = null, $sid = null, $tid = null) { if (!DB_Common::$debug_mode) { header('content-type: text/xml'); } echo DHTMLX::response_xml($type, $respuesta, $sid, $tid); }