Copyright (C) 2005-2010 James Grant Copyright (C) 2007 David 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. */ require_once("common.inc.php"); require_once("user.inc.php"); user_auth_required(); /* // find out if this user actually is in this conference $query = "SELECT COUNT(*) FROM users WHERE conferences_id = {$conference['id']}" . " AND accounts_id = " . $_SESSION['accounts_id']; $data = mysql_fetch_array(mysql_query($query)); if($data[0] == 0){ // They're not actually connected to this conference, let's hook 'em up $u = user_create($_SESSION['accounts_id'], $_SESSION['conferences_id']); $_SESSION['users_id'] = $u['id']; } */ $u = user_load($_SESSION['users_id']); if($u && array_key_exists('action', $_GET)){ switch($_GET['action']){ case 'draw_roles': draw_roles(); break; case 'register': $role = $_POST['role']; $result = account_add_role($u['accounts_id'], $roles[$role]['id'], $_SESSION['conferences_id'], $_POST['password']); if($result == 'ok'){ } break; case 'remove': $role = $_GET['role']; $result = account_remove_role($u['accounts_id'], $roles[$role]['id'], $_SESSION['conferences_id']); if($result == 'ok'){ happy_(i18n("Role successfully removed.")); }else{ error_(i18n("Unable to remove role.")); } break; case 'activate': $role = $_GET['role']; if(!array_key_exists($role, $u['roles'])) { /* Hand crafting URLs? */ echo "HALT: can't activate a role the user doesn't have"; exit; } $u['roles'][$role]['active'] = 'yes'; user_save($u); happy_("{$roles[$role]['name']} role for %1 successfully activated",array($conference['name'])); echo i18n("Active"); break; case 'deactivate': $role = $_GET['role']; if(!array_key_exists($role, $u['roles'])) { /* Hand crafting URLs? */ echo "HALT: can't deactivate a role the user doesn't have"; } $u['roles'][$role]['active'] = 'no'; user_save($u); happy_("{$roles[$role]['name']} role for %1 successfully deactivated",array($conference['name'])); echo i18n("Deactivated"); break; default: break; } updateSessionRoles($u); exit; } send_header("Main Page", array()); // throw in our javascript functions ?> "; echo "Please review your roles below and if correct, continue to your Account Profile"; echo "
"; echo "
"; draw_roles(); send_footer(); function draw_roles(){ // get a list of all roles that this user can potentially sign up for global $u, $config; $rlist = array(); $q = mysql_query("SELECT * FROM roles"); $available = array(); $registered = array(); while($row = mysql_fetch_assoc($q)){ $roleid = $row['type']; if($config[$roleid.'_enable']!="no") { $idx = $roleid . "_registration_type"; if(array_key_exists($idx, $config)){ // this is a role that can potentially be registered for if(is_array($u['roles']) && array_key_exists($row['type'], $u['roles'])){ $registered[$row['type']] = $row['name']; }else{ $available[$row['type']] = $row['name']; } } } } echo '
'; if(count($registered) > 0){ $rowNumber = 0; echo "

" . i18n("You are currently registered for the following roles") . ":

"; echo '
'; echo ""; foreach($registered as $role => $title){ echo ''; echo ""; if($u['roles'][$role]['active'] == 'yes') { $cs = i18n('Active'); $cl = 'happy'; $a = 'disabled="disabled"'; $d = ''; } else { $cs = i18n('Deactivated'); $cl = 'notice'; $a = ''; $d = 'disabled="disabled"'; } ?> "; } echo "
" . i18n($title) . "
"; } if(count($available) > 0){ echo "

" . i18n("The following roles are available") . ":

"; $rowNumber = 0; echo ""; foreach($available as $type => $title){ echo ''; echo ""; } echo "
$title"; draw_signup_form($type); echo "
"; } echo "
"; } function draw_signup_form($type){ global $config; global $roles; switch($type) { case 'volunteer': $reg_open = user_volunteer_registration_status(); $reg_mode = $config['volunteer_registration_type']; // $reg_single_password = $config['volunteer_registration_singlepassword']; // $password_expiry_days = $config['volunteer_password_expiry_days']; // $welcome_email = "volunteer_welcome"; break; /*case 'committee': $reg_open = 'notpermitted'; $reg_mode = 'closed'; $reg_single_password = ''; $password_expiry_days = 0; $welcome_email = false; break; */ case 'teacher': $reg_open = user_teacher_registration_status(); $reg_mode = $config['teacher_registration_type']; break; case 'judge': $reg_open = user_judge_registration_status(); $reg_mode = $config['judge_registration_type']; // $reg_single_password = $config['judge_registration_singlepassword']; // $password_expiry_days = $config['judges_password_expiry_days']; // $welcome_email = "judge_welcome"; break; case 'participant': $reg_open = user_participant_registration_status(); $reg_mode = $config['participant_registration_type']; // $reg_open = 'closed'; // $reg_mode = $config['judge_registration_type']; // $reg_single_password = $config['judge_registration_singlepassword']; // $password_expiry_days = 0; // $welcome_email = "register_students_welcome"; break; default: echo "Role type '$type' is not handled"; return; } if($reg_open == 'open'){ switch($reg_mode){ case 'open': case 'openorinvite': echo '

' . i18n("Registration is open. Please click the 'Register' button if you wish to register."); echo "   "; echo '

'; break; case 'singlepassword': echo '

'; echo i18n("{$roles[$type]['name']} Registration is protected by a password. You must know the {$roles[$type]['name']} Registration Password in order to register for this role. Please contact the committee to obtain the password if you wish to register."); echo "

"; echo i18n("{$roles[$type]['name']} Password").":"; echo ""; echo "

"; break; case 'schoolpassword': echo "\"$reg_mode\" registration is not yet handled"; break; case 'invite': echo i18n("Registration is by invite only"); output_page_text("register_{$type}_invite"); break; default: echo "Unhandled registration mode: $reg_mode"; } }else{ echo i18n("{$roles[$type]['name']} registration is not open"); } }