'index.php', 'name' => get_lang('PlatformAdmin')); $tool_name = null; $action = isset($_GET['action']) ? $_GET['action'] : null; if (!in_array($extraFieldType, ExtraField::getValidExtraFieldTypes())) { api_not_allowed(); } $check = Security::check_token('request'); $token = Security::get_token(); $obj = new ExtraField($extraFieldType); $obj->setupBreadcrumb($interbreadcrumb, $action); //jqgrid will use this URL to do the selects $url = api_get_path(WEB_AJAX_PATH) . 'model.ajax.php?a=get_extra_fields&type=' . $extraFieldType; //The order is important you need to check the the $column variable in the model.ajax.php file $columns = $obj->getJqgridColumnNames(); //Column config $column_model = $obj->getJqgridColumnModel(); //Autowidth $extra_params['autowidth'] = 'true'; //height auto $extra_params['height'] = 'auto'; $extra_params['sortname'] = 'field_order'; $action_links = $obj->getJqgridActionLinks($token); $htmlHeadXtra[] = ''; // The header. Display::display_header($tool_name); // Action handling: Add switch ($action) { case 'add': if (api_get_session_id() != 0 && !api_is_allowed_to_session_edit(false, true) ) { api_not_allowed(); } $url = api_get_self() . '?type=' . $obj->type . '&action=' . Security::remove_XSS($_GET['action']); $form = $obj->return_form($url, 'add'); // The validation or display if ($form->validate()) { //if ($check) { $values = $form->exportValues(); $res = $obj->save($values); if ($res) { Display::display_confirmation_message(get_lang('ItemAdded')); } //} $obj->display(); } else { echo '
'; echo '' . Display::return_icon('back.png', get_lang('Back'), '', ICON_SIZE_MEDIUM) . ''; echo '
'; $form->addElement('hidden', 'sec_token'); $form->setConstants(array('sec_token' => $token)); $form->display(); } break; case 'edit': // Action handling: Editing $url = api_get_self() . '?type=' . $obj->type . '&action=' . Security::remove_XSS($_GET['action']) . '&id=' . intval($_GET['id']); $form = $obj->return_form($url, 'edit'); // The validation or display if ($form->validate()) { $values = $form->exportValues(); $res = $obj->update($values); Display::display_confirmation_message( sprintf(get_lang('ItemUpdated'), $values['variable']), false ); $obj->display(); } else { echo '
'; echo '' . Display::return_icon('back.png', get_lang('Back'), '', ICON_SIZE_MEDIUM) . ''; echo '
'; $form->addElement('hidden', 'sec_token'); $form->setConstants(array('sec_token' => $token)); $form->display(); } break; case 'delete': // Action handling: delete //if ($check) { $res = $obj->delete($_GET['id']); if ($res) { Display::display_confirmation_message(get_lang('ItemDeleted')); } //} $obj->display(); break; default: $obj->display(); break; } Display :: display_footer();