$value_info) { $result_array[$key_value] = SubLanguageManager::write_data_in_file($path_folder, $value_info, $key_value); } $variables_with_problems = ''; if (!empty($result_array)) { foreach ($result_array as $key => $result) { if ($result == false) { $variables_with_problems .= $key.'
'; } } } if (isset($_REQUEST['redirect'])) { $message = Display::return_message(get_lang('The new word has been added'), 'success'); if (!empty($variables_with_problems)) { Display::return_message( $path_folder.' '.get_lang('is not writeable').'
'.api_ucwords(get_lang('errors found')) .':
'.$variables_with_problems, 'error' ); } Display::addFlash($message); if (isset($_REQUEST['extra_field_type'])) { $redirectUrl = api_get_path(WEB_CODE_PATH).'admin/extra_fields.php'; switch ($_REQUEST['extra_field_type']) { case ExtraField::USER_FIELD_TYPE: header("Location: {$redirectUrl}?type=user"); exit; case ExtraField::COURSE_FIELD_TYPE: header("Location: {$redirectUrl}?type=course"); exit; case ExtraField::SESSION_FIELD_TYPE: header("Location: {$redirectUrl}?type=session"); exit; } } if (isset($_REQUEST['skill'])) { header('Location: '.api_get_path(WEB_CODE_PATH).'admin/skill_list.php'); exit; } } if (!empty($variables_with_problems)) { echo $path_folder.' '.get_lang('is not writeable').'
'.api_ucwords(get_lang('errors found')).':
'.$variables_with_problems; } else { echo 1; } }