* Copyright (C) 2005 James Grant * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ ?> 'committee_main.php', 'Science-ation Configuration' => 'config/index.php'), 'project_safety_questions'); if (get_value_from_array($_POST, 'action') == 'save' && get_value_from_array($_POST, 'save')) { if ($_POST['question']) { if (!preg_match('/^[0-9]*$/', $_POST['ord'])) echo notice(i18n('Defaulting non-numeric order value %1 to 0', array($_POST['ord']))); $stmt = $pdo->prepare("UPDATE safetyquestions SET question=?, `type`=?, `required`=?, ord=? WHERE id=? AND year=?"); $stmt->execute([stripslashes($_POST['question']),stripslashes($_POST['type']),stripslashes($_POST['required']), stripslashes($_POST['ord']),$_POST['save'],$config['FAIRYEAR']]); show_pdo_errors_if_any($pdo); echo happy(i18n('Safety question successfully saved')); } else echo error(i18n('Question is required')); } if (get_value_from_array($_POST, 'action') == 'new') { if ($_POST['ord'] == ''){ $_POST['ord'] = 0; } if ($_POST['question']) { $stmt = $pdo->prepare("INSERT INTO safetyquestions (question,type,required,ord,year) VALUES ( ?, ?, ?, ?, ? )"); $stmt->execute([stripslashes($_POST['question']),stripslashes($_POST['type']),stripslashes($_POST['required']), stripslashes($_POST['ord']),$config['FAIRYEAR'] ]); show_pdo_errors_if_any($pdo); echo happy(i18n('Safety question successfully added')); } else echo error(i18n('Question is required')); } if (get_value_from_array($_GET, 'action') == 'remove' && get_value_from_array($_GET, 'remove')) { $stmt = $pdo->prepare("DELETE FROM safetyquestions WHERE id=? AND year=?"); $stmt->execute([$_GET['remove'],$config['FAIRYEAR']]); echo happy(i18n('Safety question successfully removed')); } if ((get_value_from_array($_GET, 'action') == 'edit' && get_value_from_array($_GET, 'edit')) || get_value_from_array($_GET, 'action') == 'new') { $showform = true; echo '
'; if ($_GET['action'] == 'new') { $buttontext = 'Add safety question'; echo "\n"; $r = null; } else if ($_GET['action'] == 'edit') { $buttontext = 'Save safety question'; echo "\n"; $q = $pdo->prepare("SELECT * FROM safetyquestions WHERE id=? AND year=?"); $q->execute([$_GET['edit'],$config['FAIRYEAR'] ]); echo '\n"; if (!$r = $q->fetch(PDO::FETCH_OBJ)) { $showform = false; echo error(i18n('Invalid safety question')); } } if ($showform) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '
' . i18n('Question') . ''; echo '\n"; echo '
' . i18n('Type') . ''; echo ''; echo '
' . i18n('Required?') . ''; echo ''; echo '
' . i18n('Display Order') . ''; echo '\n"; echo '
'; echo '\n"; echo '
'; echo '
'; echo '
'; echo '
'; } else { } } echo '
'; echo '' . i18n('Add new safety question') . ''; echo ''; $q = $pdo->prepare("SELECT * FROM safetyquestions WHERE year=? ORDER BY ord"); $q->execute([$config['FAIRYEAR']]); echo ''; while ($r = $q->fetch(PDO::FETCH_OBJ)) { echo ''; echo ""; echo ""; echo ""; echo ""; echo ''; echo ''; } echo '
' . i18n('Ord') . '' . i18n('Question') . '' . i18n('Type') . '' . i18n('Required') . '' . i18n('Actions') . '
$r->ord$r->question$r->type$r->required'; echo 'id\">'; echo '   '; echo 'id\">'; echo '
'; send_footer(); ?>