* Copyright (C) 2005 James Grant * Copyright (C) 2024 AlgoLibre Inc. * * 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', 'Administration' => 'admin/index.php' ), 'committee_management' ); $_SESSION['last_page'] = 'committee_management'; ?> prepare("INSERT INTO committees (name) VALUES ('" . $_POST['addcommittee'] . "')"); $q->execute(); echo happy(i18n('Committee successfully added')); } if (get_value_from_array($_POST, 'committees_id') && get_value_from_array($_POST, 'committees_ord')) { // re-order the committees $x = 0; $ids = $_POST['committees_id']; $ords = $_POST['committees_ord']; $titles = $_POST['title']; $pords = $_POST['order']; while (get_value_from_array($ids, $x)) { $cid = intval($ids[$x]); $q = $pdo->prepare("UPDATE committees SET ord='" . intval($ords[$x]) . "' WHERE id='$cid'"); $q->execute(); $x++; $ctitle = $titles[$cid]; $cord = $pords[$cid]; /* * If the committee has no members, don't bother trying to do * anything */ if (!is_array($ctitle)) continue; // print_r($ctitle); foreach ($ctitle as $uid => $title) { $o = intval($cord[$uid]); $t = stripslashes($title); $u = intval($uid); $q = $pdo->prepare("UPDATE committees_link SET title='$t', ord='$o' WHERE committees_id='$cid' AND users_uid='$u'"); $q->execute(); } } echo happy(i18n('Committees successfully saved')); } if (get_value_from_array($_POST, 'action') == 'assign') { if (get_value_from_array($_POST, 'committees_id') && get_value_from_array($_POST, 'users_uid')) { $cid = intval($_POST['committees_id']); $q = $pdo->prepare("SELECT * FROM committees_link WHERE committees_id='$cid' AND users_uid='$uid'"); $q->execute(); if (!$q->rowCount()) { $q = $pdo->prepare("INSERT INTO committees_link (committees_id,users_uid) VALUES ('$cid','$uid')"); $q->execute(); echo happy(i18n('Successfully added member to committee')); } else echo error(i18n('That member already exists in that committee')); } else echo error(('You must choose both a member and a committee')); } if (get_value_from_array($_GET, 'deletecommittee')) { $del = intval($_GET['deletecommittee']); $q = $pdo->prepare("DELETE FROM committees WHERE id='$del'"); $q->execute(); echo happy(i18n('Committee removed')); } if (get_value_from_array($_POST, 'action') == 'remove') { /* user_delete takes care of unlinking the user in other tables */ user_delete($uid, 'committee'); echo happy(i18n('Committee member deleted')); } if (get_value_from_array($_GET, 'unlinkmember') && get_value_from_array($_GET, 'unlinkcommittee')) { $mem = intval($_GET['unlinkmember']); $com = intval($_GET['unlinkcommittee']); // unlink the member from the committee $q = $pdo->prepare("DELETE FROM committees_link WHERE users_uid='$mem' AND committees_id='$com'"); $q->execute(); echo happy(i18n('Committee member unlinked from committee')); } echo ''; echo ''; echo '
'; echo '

' . i18n('Add Committee') . "

\n"; echo "
\n"; echo "\n"; echo ''; echo ' \n"; echo "
' . i18n('Committee Name') . ':
\n"; echo "
\n"; echo '
 '; echo '

' . i18n('Add Committee Member') . "

\n"; echo "
\n"; echo "\n"; echo '\n"; echo ' \n"; echo "
' . i18n('Member Email') . ': '; echo "\n"; echo "
\n"; echo '' . i18n('Reload committee list (needed after adding a new member)') . "\n"; echo "
\n"; echo '
'; echo '
'; echo '

' . i18n('Committee Member Management') . "

\n"; echo "
\n"; echo ''; echo ''; echo '
'; echo ''; echo ''; $q = $pdo->prepare("SELECT uid,MAX(year),firstname,lastname,email,deleted FROM users WHERE types LIKE '%committee%' GROUP BY uid ORDER BY firstname"); $q->execute(); echo ''; echo ''; // The Assign Div echo '
'; echo i18n('To Committee') . ': '; $q = $pdo->prepare('SELECT * FROM committees ORDER BY ord,name'); $q->execute(); echo ''; echo '
'; // The Edit or Remove Div echo '
'; echo '
'; echo ''; echo '
'; $q = $pdo->prepare('SELECT * FROM committees ORDER BY ord,name'); $q->execute(); if ($q->rowCount()) { echo '

' . i18n('Committees') . '

'; echo "
\n"; echo ''; echo ''; echo ''; echo ''; while ($r = $q->fetch(PDO::FETCH_OBJ)) { echo ''; echo '\n"; while ($r2 = $q2->fetch(PDO::FETCH_OBJ)) { if ($u = user_load_by_uid($r2->uid)) { echo ''; echo '\n"; } } echo "\n"; } echo '\n"; echo '
' . i18n('Title') . '' . i18n('Order') . '' . i18n('Public Email / Private Email') . '
'; echo "id\" />"; echo "ord\" />"; echo '  ' . i18n($r->name) . ''; $q2 = $pdo->prepare("SELECT committees_link.title, committees_link.ord, users.uid, MAX(users.year) AS my, users.lastname FROM committees_link JOIN users ON users.uid = committees_link.users_uid WHERE committees_id='{$r->id}' GROUP BY users.uid ORDER BY ord, users.lastname "); $q2->execute(); if ($q2->rowCount() == 0) { echo '   '; echo "id\">Remove Committee'; } echo "
    '; echo "\"Edit\""; echo ' '; echo "id}\">\"Unlink\""; echo ''; echo "{$u['name']}"; echo ''; echo "title}\" name=\"title[{$r->id}][{$u['uid']}]\" size=\"15\">"; echo ''; echo "ord}\" name=\"order[{$r->id}][{$u['uid']}]\" size=\"2\">"; echo ''; if (get_value_from_array($u, 'email')) { list($b, $a) = explode('@', $u['email']); echo ""; } if (get_value_from_array($u, 'emailprivate')) { if ($u['email']) echo ' / '; list($b, $a) = explode('@', $u['emailprivate']); echo ""; } echo "
 
'; echo "
\n"; } send_footer(); ?>