2007-11-17 21:59:59 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
*
* 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 .
*/
2007-11-17 21:59:59 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require_once ( '../common.inc.php' );
require_once ( '../user.inc.php' );
require_once ( '../committee.inc.php' );
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
user_auth_required ( 'committee' , 'admin' );
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'users_uid' ))
2009-09-09 00:26:12 +00:00
$uid = intval ( $_POST [ 'users_uid' ]);
2025-01-29 03:30:48 +00:00
/* Now, start the output for this page */
send_header ( 'Committee Management' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ),
'committee_management' );
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
$_SESSION [ 'last_page' ] = 'committee_management' ;
2007-11-17 21:59:59 +00:00
?>
< script type = " text/javascript " >
<!--
2009-09-09 00:26:12 +00:00
function openeditor ( id )
{
2009-10-29 17:05:15 +00:00
window . open ( " user_editor_window.php?id= " + id , " UserEditor " , " location=no,menubar=no,directories=no,toolbar=no,width=770,height=500,scrollbars=yes " );
2009-09-09 00:26:12 +00:00
return false ;
}
function neweditor ()
{
var username = document . forms . addmember . add_member . value ;
2009-10-29 17:05:15 +00:00
window . open ( " user_editor_window.php?type=committee&username= " + username , " UserEditor " , " location=no,menubar=no,directories=no,toolbar=no,width=770,height=500,scrollbars=yes " );
2009-09-09 00:26:12 +00:00
document . forms . addmember . add_member . value = " " ;
return false ;
}
2007-11-17 21:59:59 +00:00
function getElement ( e , f )
{
if ( document . layers )
{
f = ( f ) ? f : self ;
if ( f . document . layers [ e ]) {
return f . document . layers [ e ];
}
for ( W = 0 ; i < f . document . layers . length ; W ++ ) {
return ( getElement ( e , fdocument . layers [ W ]));
}
}
if ( document . all ) {
return document . all [ e ];
}
return document . getElementById ( e );
}
function actionChanged ()
{
if ( document . forms . memberaction . action . selectedIndex == 1 ) //assign
{
getElement ( 'assigndiv' ) . style . display = 'block' ;
}
else // edit or delete
{
getElement ( 'assigndiv' ) . style . display = 'none' ;
}
}
function actionSubmit ()
2024-12-17 01:34:35 -05:00
{
2007-11-17 21:59:59 +00:00
if ( document . forms . memberaction . action . selectedIndex == 0 )
{
alert ( 'You must choose an action' );
return false ;
}
2009-09-09 00:26:12 +00:00
if ( document . forms . memberaction . users_uid . selectedIndex == 0 )
2007-11-17 21:59:59 +00:00
{
alert ( 'You must choose a member' );
return false ;
}
2009-09-09 00:26:12 +00:00
if ( document . forms . memberaction . action . selectedIndex == 2 ) {
// Edit
var id = document . forms . memberaction . users_uid . options [ document . forms . memberaction . users_uid . selectedIndex ];
openeditor ( id . value );
2025-02-14 21:50:44 +00:00
//alert("id="+id.value);
2009-09-09 00:26:12 +00:00
return false ;
}
2007-11-17 21:59:59 +00:00
if ( document . forms . memberaction . action . selectedIndex == 3 ) //remove
{
return confirmClick ( 'Are you sure you want to completely remove this member?' );
}
2009-09-09 00:26:12 +00:00
2007-11-17 21:59:59 +00:00
return true ;
}
//-->
</ script >
< ?
2025-02-14 00:19:02 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'addcommittee' )) {
// add a new committee
// re-order the committees
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " INSERT INTO committees (name) VALUES (?) " );
$q -> execute ([ $_POST [ 'addcommittee' ]]);
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Committee successfully added' ));
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
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' ];
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
$titles = $_POST [ 'title' ];
2007-11-20 20:46:05 +00:00
$pords = $_POST [ 'order' ];
2025-01-29 03:30:48 +00:00
while ( get_value_from_array ( $ids , $x )) {
2007-11-20 20:46:05 +00:00
$cid = intval ( $ids [ $x ]);
2024-12-06 20:54:02 -05:00
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " UPDATE committees SET ord=? WHERE id=? " );
$q -> execute ([ intval ( $ords [ $x ]), $cid ]);
2007-11-17 21:59:59 +00:00
$x ++ ;
2007-11-20 20:46:05 +00:00
$ctitle = $titles [ $cid ];
$cord = $pords [ $cid ];
2008-01-07 05:38:44 +00:00
2025-01-29 03:30:48 +00:00
/*
* If the committee has no members , don ' t bother trying to do
* anything
*/
if ( ! is_array ( $ctitle ))
continue ;
// print_r($ctitle);
2008-01-07 05:38:44 +00:00
2025-01-29 03:30:48 +00:00
foreach ( $ctitle as $uid => $title ) {
2007-11-20 20:46:05 +00:00
$o = intval ( $cord [ $uid ]);
2024-12-06 20:54:02 -05:00
$t = stripslashes ( $title );
2007-11-20 20:46:05 +00:00
$u = intval ( $uid );
2025-01-29 03:30:48 +00:00
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " UPDATE committees_link SET title=?, ord=?
WHERE committees_id = ? AND users_uid = ? " );
$q -> execute ([ $t , $o , $cid , $u ]);
2007-11-20 20:46:05 +00:00
}
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Committees successfully saved' ));
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'action' ) == 'assign' ) {
if ( get_value_from_array ( $_POST , 'committees_id' ) && get_value_from_array ( $_POST , 'users_uid' )) {
2007-11-17 21:59:59 +00:00
$cid = intval ( $_POST [ 'committees_id' ]);
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM committees_link WHERE committees_id=? AND users_uid=? " );
$q -> execute ([ $cid , $uid ]);
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
if ( ! $q -> rowCount ()) {
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " INSERT INTO committees_link (committees_id,users_uid) VALUES (?,?) " );
$q -> execute ([ $cid , $uid ]);
2025-01-29 03:30:48 +00:00
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' ));
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'deletecommittee' )) {
2007-11-17 21:59:59 +00:00
$del = intval ( $_GET [ 'deletecommittee' ]);
2024-12-06 20:54:02 -05:00
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " DELETE FROM committees WHERE id=? " );
$q -> execute ([ $del ]);
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Committee removed' ));
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'action' ) == 'remove' ) {
2009-09-09 00:26:12 +00:00
/* user_delete takes care of unlinking the user in other tables */
2007-11-19 21:45:08 +00:00
user_delete ( $uid , 'committee' );
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Committee member deleted' ));
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'unlinkmember' ) && get_value_from_array ( $_GET , 'unlinkcommittee' )) {
2007-11-17 21:59:59 +00:00
$mem = intval ( $_GET [ 'unlinkmember' ]);
$com = intval ( $_GET [ 'unlinkcommittee' ]);
2025-01-29 03:30:48 +00:00
// unlink the member from the committee
2024-12-06 20:54:02 -05:00
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " DELETE FROM committees_link WHERE users_uid=? AND committees_id=? " );
$q -> execute ([ $mem , $com ]);
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Committee member unlinked from committee' ));
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<table>' ;
echo '<tr><td>' ;
echo '<h4>' . i18n ( 'Add Committee' ) . " </h4> \n " ;
echo " <form method= \" post \" action= \" committees.php \" > \n " ;
echo " <table> \n " ;
echo '<tr><td>' . i18n ( 'Committee Name' ) . ': </td><td><input type="text" size="15" name="addcommittee" /></td>' ;
echo ' <td><input type="submit" value="' . i18n ( 'Add' ) . " \" /></td></tr> \n " ;
echo " </table> \n " ;
echo " </form> \n " ;
echo '</td><td width="40"> </td><td>' ;
echo '<h4>' . i18n ( 'Add Committee Member' ) . " </h4> \n " ;
echo " <form method= \" post \" name= \" addmember \" action= \" committees.php \" onsubmit= \" return neweditor(); \" > \n " ;
echo " <table> \n " ;
echo '<tr><td>' . i18n ( 'Member Email' ) . ': </td><td>' ;
echo " <input type= \" text \" size= \" 15 \" name= \" add_member \" /> \n " ;
echo " </td> \n " ;
echo ' <td><input type="submit" onclick="return neweditor();" value="' . i18n ( 'Add' ) . " \" /></td></tr> \n " ;
echo " </table> \n " ;
echo '<a href="committees.php">' . i18n ( 'Reload committee list (needed after adding a new member)' ) . " </a> \n " ;
echo " </form> \n " ;
echo '</td></tr>' ;
echo '</table>' ;
echo '<hr />' ;
echo '<h4>' . i18n ( 'Committee Member Management' ) . " </h4> \n " ;
echo " <form name= \" memberaction \" method= \" post \" action= \" committees.php \" onsubmit= \" return actionSubmit() \" > \n " ;
echo '<table>' ;
echo '<tr><td>' ;
echo '<select name="action" onchange="javascript:actionChanged()">' ;
echo '<option value="">' . i18n ( 'Choose' ) . " </option> \n " ;
echo '<option value="assign">' . i18n ( 'Assign' ) . " </option> \n " ;
echo '<option value="edit">' . i18n ( 'Edit' ) . " </option> \n " ;
echo '<option value="remove">' . i18n ( 'Remove' ) . " </option> \n " ;
echo '</select>' ;
echo '</td><td>' ;
$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 '<select name="users_uid">' ;
echo '<option value="">' . i18n ( 'Select a Member' ) . " </option> \n " ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $r -> deleted != 'no' )
continue ;
$displayname = $r -> firstname . ' ' . $r -> lastname ;
echo " <option value= \" $r->uid\ " > $displayname ( $r -> email ) </ option > \n " ;
}
echo '</select>' ;
echo '</td><td>' ;
// The Assign Div
echo '<div id="assigndiv">' ;
echo i18n ( 'To Committee' ) . ': ' ;
$q = $pdo -> prepare ( 'SELECT * FROM committees ORDER BY ord,name' );
$q -> execute ();
echo '<select name="committees_id">' ;
echo '<option value="">' . i18n ( 'Select a Committee' ) . " </option> \n " ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo " <option value= \" $r->id\ " > $r -> name </ option > \n " ;
}
echo '</select>' ;
echo '</div>' ;
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
// The Edit or Remove Div
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
echo '</td><td><input type="submit" value="' . i18n ( 'Go' ) . '" /></td></tr>' ;
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
echo '</table>' ;
echo '</form>' ;
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
echo '<script language="javascript" type="text/javascript">actionChanged()</script>' ;
echo '<hr />' ;
2024-12-06 20:54:02 -05:00
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( 'SELECT * FROM committees ORDER BY ord,name' );
$q -> execute ();
if ( $q -> rowCount ()) {
echo '<h4>' . i18n ( 'Committees' ) . '</h4>' ;
echo " <form method= \" post \" action= \" committees.php \" > \n " ;
echo '<table>' ;
echo '<tr><td colspan="2"></td><td><b>' . i18n ( 'Title' ) . '</b></td>' ;
echo '<td><b>' . i18n ( 'Order' ) . '</b></td>' ;
echo '<td><b>' . i18n ( 'Public Email / Private Email' ) . '</b></td></tr>' ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<tr>' ;
echo '<td colspan="3">' ;
echo " <input type= \" hidden \" name= \" committees_id[] \" value= \" $r->id\ " /> " ;
echo " <input size= \" 1 \" type= \" text \" name= \" committees_ord[] \" value= \" $r->ord\ " /> " ;
echo ' <b>' . i18n ( $r -> name ) . '</b>' ;
$q2 = $pdo -> prepare ( " SELECT
2010-01-04 17:51:55 +00:00
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
2025-02-09 17:24:37 +00:00
WHERE committees_id = ?
2010-01-04 17:51:55 +00:00
GROUP BY users . uid
ORDER BY ord ,
users . lastname " );
2025-02-09 17:24:37 +00:00
$q2 -> execute ([ $r -> id ]);
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( $q2 -> rowCount () == 0 ) {
echo ' ' ;
echo " <a title= \" Remove Committee \" onclick= \" return confirmClick('Are you sure you want to remove this committee?'); \" href= \" committees.php?deletecommittee= $r->id\ " >< img src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '" border="0" alt="Remove Committee" /></a>' ;
}
2007-11-17 21:59:59 +00:00
2025-01-29 03:30:48 +00:00
echo " </td></tr> \n " ;
while ( $r2 = $q2 -> fetch ( PDO :: FETCH_OBJ )) {
if ( $u = user_load_by_uid ( $r2 -> uid )) {
echo '<tr><td align="right"> ' ;
echo " <a title= \" Edit Member \" href= \" # \" onclick= \" openeditor( { $u [ 'id' ] } ) \" ><img src= \" { $config [ 'SFIABDIRECTORY' ] } /images/16/edit. { $config [ 'icon_extension' ] } \" border= \" 0 \" alt= \" Edit \" /></a> " ;
echo ' ' ;
echo " <a title= \" Unlink Member from Committee \" onclick= \" return confirmClick('Are you sure you want to unlink this member from this committee?'); \" href= \" committees.php?unlinkmember= { $u [ 'uid' ] } &unlinkcommittee= { $r -> id } \" ><img src= \" { $config [ 'SFIABDIRECTORY' ] } /images/16/undo. { $config [ 'icon_extension' ] } \" border= \" 0 \" alt= \" Unlink \" /></a> " ;
echo '</td>' ;
echo '<td valign="top">' ;
echo " <b> { $u [ 'name' ] } </b> " ;
echo '</td><td>' ;
echo " <input type= \" text \" value= \" { $r2 -> title } \" name= \" title[ { $r -> id } ][ { $u [ 'uid' ] } ] \" size= \" 15 \" > " ;
echo '</td><td>' ;
echo " <input type= \" text \" value= \" { $r2 -> ord } \" name= \" order[ { $r -> id } ][ { $u [ 'uid' ] } ] \" size= \" 2 \" > " ;
echo '</td><td>' ;
if ( get_value_from_array ( $u , 'email' )) {
list ( $b , $a ) = explode ( '@' , $u [ 'email' ]);
echo " <script language= \" javascript \" type= \" text/javascript \" >em(' $b ',' $a ')</script> " ;
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $u , 'emailprivate' )) {
if ( $u [ 'email' ])
echo ' <b>/</b> ' ;
list ( $b , $a ) = explode ( '@' , $u [ 'emailprivate' ]);
echo " <script language= \" javascript \" type= \" text/javascript \" >em(' $b ',' $a ')</script> " ;
}
echo " </td></tr> \n " ;
2007-11-17 21:59:59 +00:00
}
}
2025-01-29 03:30:48 +00:00
echo " <tr><td colspan= \" 2 \" > </td></tr> \n " ;
2007-11-17 21:59:59 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<tr><td colspan="2"><input type="submit" value="' . i18n ( 'Save Committee Orders and Titles' ) . " \" /></td></tr> \n " ;
echo '</table>' ;
echo " </form> \n " ;
}
2007-11-17 21:59:59 +00:00
send_footer ();
?>