require('../../../config.php'); require($CONF['fs_languages'] . $_SESSION['lng'] . '/' . $CONF['fs_lng_forms'] . basename($_SERVER['PHP_SELF'])); require($CONF['fs_languages'] . $_SESSION['lng'] . '/' . $CONF['fs_lng_forms'] . $CONF['pg_general_form']); $HTML = new html(); $OA = new oa(); $SECTION = new section(); //------------------------------------------------------------------------------------- // TRATAMINETO DE LOS DATOS ENVIADOS POR POST if ( count($_POST) > 0 ) { strip_slashes($_POST); $action_result = $OA->manageRecord($_POST, $_FILES); if ( ereg("^0+$", $action_result) ) { if ( $_GET['reload'] == 1 ) { $HTML->generateClosePage($CONF['sys_http_server'] . $CONF['ws_js'] . $CONF['js_forms']); return exit; } else $js_onload = ' afterInsert();'; } else $error_string = manage_error_string($action_result); } //------------------------------------------------------------------------------------- // CARGAR VALORES PARA UN REGISTRO DADO if ( count($_POST) > 0 ) { $record = $_POST['record_id']; $DATA_SOURCE = &$_POST; } elseif ( !empty($_GET['id']) ) { if ( $OA->checkRecord($_GET['id']) ) { $DATA_SOURCE = $OA->getRecordValues($_GET['id']); $DATA_SOURCE['tipo'] = split(',', $DATA_SOURCE['tipo']); $record = $_GET['id']; } else unset($_GET['id']); } html_special_chars($DATA_SOURCE); //------------------------------------------------------------------------------------- // GENERAR PAGINA $js_vars = array( 'JS_CALENDAR_SRC' => $CONF['sys_http_server'] . $CONF['pg_calendar'], 'JS_ACTION_SAVE' => $LNG['js_action_save_ok'] ); $buttons = array(); /*$buttons[] = array( 'href' => $CONF['pg_section_oas'] . '?id_oa=' . $record, 'title' => $LNG['button_sections'], 'img' => 'boton_secciones_peq.gif', 'img_des' => 'boton_secciones_peq_des.gif', 'status' => ( $record ? true : false ), 'params' => 'class="separation"' ); $buttons[] = array( 'href' => $CONF['pg_section_docs'] . '?section=oa&sId=' . $record, 'title' => $LNG['button_docs'], 'img' => 'boton_documentos_peq.gif', 'img_des' => 'boton_documentos_peq_des.gif', 'status' => ( $record ? true : false ), 'params' => 'class="separation"' ); $buttons[] = array( 'href' => $CONF['pg_section_files'] . '?section=oa&sId=' . $record, 'title' => $LNG['button_files'], 'img' => 'boton_ficheros_peq.gif', 'img_des' => 'boton_ficheros_peq_des.gif', 'status' => ( $record ? true : false ) );*/ $HTML->generateHeader(array($CONF['css_forms']), array($CONF['js_general'],$CONF['js_forms']), $js_vars, ' onLoad="init();' . $js_onload . '"'); if ( !empty($error_string) ) $HTML->generateErrorDiv($error_string); $HTML->generateFormButtons($buttons, $button_actions); echo '