'index.php', 'name' => get_lang('Administration')];
$tool_name = null;
$action = $_GET['action'] ?? null;
if (!in_array($extraFieldType, ExtraField::getValidExtraFieldTypes())) {
api_not_allowed(true);
}
$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();
$extra_params['autowidth'] = 'true';
$extra_params['height'] = 'auto';
$extra_params['sortname'] = 'field_order';
$action_links = $obj->getJqgridActionLinks($token);
$htmlHeadXtra[] = '';
Display::display_header($tool_name);
switch ($action) {
case 'add':
if (0 != api_get_session_id() &&
!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()) {
$values = $form->exportValues();
unset($values['id']);
$values['auto_remove'] = isset($_POST['auto_remove']) ? 1 : 0;
$res = $obj->save($values);
if ($res) {
Display::addFlash(Display::return_message(get_lang('Item added'), 'confirmation'));
header('Location: '.api_get_self().'?type='.$obj->type);
exit;
}
$obj->display();
} else {
$actions = ''.
Display::getMdiIcon(ActionIcon::BACK, 'ch-tool-icon', null, ICON_SIZE_MEDIUM, get_lang('Back')).'';
echo Display::toolbarAction('toolbar', [$actions]);
$form->addElement('hidden', 'sec_token');
$form->setConstants(['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();
$values['auto_remove'] = isset($_POST['auto_remove']) ? 1 : 0;
$res = $obj->update($values);
if ($res) {
Display::addFlash(
Display::return_message(
sprintf(get_lang('Item updated'), $values['variable']),
'confirmation',
false
)
);
header('Location: '.api_get_self().'?type='.$obj->type);
exit;
}
$obj->display();
} else {
$actions = ''.
Display::getMdiIcon(ActionIcon::BACK, 'ch-tool-icon', null, ICON_SIZE_MEDIUM, get_lang('Back')).'';
echo Display::toolbarAction('toolbar', [$actions]);
$form->addElement('hidden', 'sec_token');
$form->setConstants(['sec_token' => $token]);
$form->display();
}
break;
case 'delete':
// Action handling: delete
$res = $obj->delete($_GET['id']);
if ($res) {
echo Display::return_message(get_lang('Item deleted'), 'confirmation');
}
$obj->display();
break;
default:
$obj->display();
break;
}
Display::display_footer();