* 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', 'SFIAB Configuration' => 'config/index.php', 'Project Sub-Divisions' => 'config/subdivisions.php'), 'project_sub_divisions'); } else { send_header('Project Sub-Divisions', array('Committee Main' => 'committee_main.php', 'SFIAB Configuration' => 'config/index.php'), 'project_sub_divisions'); } if (get_value_from_array($_POST, 'action') == 'edit') { if (get_value_from_array($_POST, 'id') && get_value_from_array($_POST, 'projectdivisions_id') && get_value_from_array($_POST, 'subdivision')) { $q = $pdo->prepare("SELECT id FROM projectsubdivisions WHERE id=? AND year=?"); $q->execute([$_POST['id'],$config['FAIRYEAR']]); if ($q->rowCount() && $_POST['saveid'] != $_POST['id']) { echo error(i18n('Sub-Division ID %1 already exists', array($_POST['id']))); } else { $stmt = $pdo->prepare('UPDATE projectsubdivisions SET ' . "id=?, " . "projectdivisions_id=?, " . "subdivision=?" . "WHERE id=?"); $stmt->execute([$_POST['id'],$_POST['projectdivisions_id'],stripslashes($_POST['subdivision']),$_POST['saveid']]); echo happy(i18n('Sub-Division successfully saved')); } } else { echo error(i18n('All fields are required')); } } if (get_value_from_array($_POST, 'action') == 'new') { if (get_value_from_array($_POST, 'projectdivisions_id') && get_value_from_array($_POST, 'subdivision')) { if (!$_POST['id']) { $idq = $pdo->prepare('SELECT MAX(id) AS id FROM projectsubdivisions'); $idq->execute(); $idr = $idq->fetch(PDO::FETCH_OBJ); $newid = $idr->id + 1; } else $newid = $_POST['id']; $q = $pdo->prepare("SELECT id FROM projectsubdivisions WHERE id=? AND year=?"); $q->execute([$newid,$config['FAIRYEAR']]); if ($q->rowCount()) { echo error(i18n('Sub-Division ID %1 already exists', array($newid))); } else { $stmt = $pdo->prepare('INSERT INTO projectsubdivisions (id,projectdivisions_id,subdivision,year) VALUES ( ' . "'$newid', " . "'" . $_POST['projectdivisions_id'] . "', " . "'" . stripslashes($_POST['subdivision']) . "', " . "'" . $config['FAIRYEAR'] . "') "); $stmt->execute(); echo happy(i18n('Sub-Division successfully added')); } } else { echo error(i18n('All fields except ID are required')); } } if (get_value_from_array($_GET, 'action') == 'remove' && get_value_from_array($_GET, 'remove')) { $stmt = $pdo->prepare("DELETE FROM projectsubdivisions WHERE id=?"); $stmt->execute([$_GET['remove']]); echo happy(i18n('Sub-Division successfully removed')); } echo '
'; if (!(get_value_from_array($_GET, 'action') == 'edit' || get_value_from_array($_GET, 'action') == 'new')) echo '' . i18n('Add new sub-division') . "\n"; echo ''; echo ''; echo '\n"; echo '\n"; echo '\n"; echo '\n"; echo ''; if (get_value_from_array($_GET, 'action') == 'edit' || get_value_from_array($_GET, 'action') == 'new') { echo '\n"; $divisionr = array(); if (get_value_from_array($_GET, 'action') == 'edit') { echo '\n"; $q = $pdo->prepare("SELECT * FROM projectsubdivisions WHERE id=? AND year=?"); $q->execute([get_value_from_array($_GET, 'edit'),$config['FAIRYEAR']]); $divisionr = $q->fetch(PDO::FETCH_OBJ); $buttontext = 'Save'; } else if ($_GET['action'] == 'new') { $buttontext = 'Add'; } echo ''; echo ' '; echo ' '; echo ' '; echo ' '; $dq->execute(); echo ''; } else { $q = $pdo->prepare("SELECT projectsubdivisions.id, \t \t\t\tprojectsubdivisions.projectdivisions_id, projectsubdivisions.subdivision, projectdivisions.division FROM projectsubdivisions, projectdivisions WHERE projectsubdivisions.year=? AND projectdivisions.year=? AND projectsubdivisions.projectdivisions_id=projectdivisions.id ORDER BY division,subdivision"); $q->execute([$config['FAIRYEAR'],$config['FAIRYEAR']]); show_pdo_errors_if_any($pdo); while ($r = $q->fetch(PDO::FETCH_OBJ)) { echo ''; echo " "; echo " "; echo " "; echo ' '; echo ''; } } echo '
' . i18n('Parent Division') . "' . i18n('ID') . "' . i18n('Sub-Division') . "' . i18n('Actions') . "
'; echo ''; echo '
$r->division$r->id$r->subdivision'; echo 'id\">'; echo '   '; echo 'id\">'; echo '
'; if (get_value_from_array($_GET, 'action') == 'new') echo '         ' . i18n('Leave ID field blank to auto-assign next available ID'); echo '
'; send_footer(); ?>