$v) { switch($k) { case 'roles': if(!is_array($_GET['roles'])) exit(); foreach($_GET['roles'] as $r) { if(!array_key_exists($r, $sfiab_roles)) exit(); $roles[] = $r; } $_SESSION['edit_return'] = $roles; break; case 'years': if(!is_array($_GET['years'])) exit(); foreach($_GET['years'] as $y) { $year = (int)$y; if($year > 0 && $year < 9999) { $years[] = $year; } else if($year == -1) { $years = array(-1); break; } } break; case 'status': if(!is_array($_GET['status'])) exit(); foreach($_GET['status'] as $s) { if(in_array($s, array('complete', 'active','new','accepted'))) { $status[] = $s; } } break; case 'attending': if(!is_array($_GET['attending'])) exit(); foreach($_GET['attending'] as $s) { if(in_array($s, array('attending', 'not_attending'))) { $attending[] = $s; } } break; case 'show_filter': $filter_collapsed = "false"; break; case 'edit': $uid = (int)$v; $new_u = user_load($mysqli, $uid); /* Create a project */ if($new_u['s_pid'] === NULL && in_array('student', $new_u['roles'])) { $new_u['s_pid'] = project_create($mysqli); user_save($mysqli, $new_u); } $_SESSION['edit_uid'] = $uid; $_SESSION['edit_roles'] = $new_u['roles']; $_SESSION['edit_name'] = $new_u['name']; header("Location: ".user_homepage($new_u)); exit(); case 'return': unset($_SESSION['edit_uid']); unset($_SESSION['edit_roles']); unset($_SESSION['edit_name']); $roles = $_SESSION['edit_return']; break; } } if(count($roles) == 0) { $roles = array('committee'); $_SESSION['edit_return'] = $roles; } if(count($years) == 0) { $years[] = $config['year']; } if(count($status) == 0) { $status[] = 'complete'; $status[] = 'active'; } if(count($attending) == 0) { $attending = array('attending', 'not_attending'); } $page_id = 'c_user_list'; sfiab_page_begin($u, "User List", $page_id); ?>

User List Options

$data) { $roles_sel[$type] = $data['name']; } form_begin($form_id, "c_user_list.php", false, false, "get"); form_check_group($form_id, 'roles', "Show Roles", $roles_sel, $roles); form_hidden($form_id, "show_filter", "1"); /* Find the full range of years */ $q = $mysqli->query("SELECT DISTINCT(`year`) FROM `users` ORDER BY `year` DESC"); $years_sel = array(); while($r = $q->fetch_row()) { $y = (int)$r[0]; $years_sel[$y] = $y; } $years_sel["-1"] = "Latest for each user"; form_check_group($form_id, 'years', "Show Years", $years_sel, $years); $status_sel = array('complete' => 'Complete', 'active' => 'Active', 'new' => 'New', 'accepted' => 'Accepted (students only)'); form_check_group($form_id, 'status', "Show Status", $status_sel, $status); $attending_sel = array('attending' => "Attending", 'not_attending'=>'Not Attending'); form_check_group($form_id, 'attending', "Show Attending", $attending_sel, $attending); form_button($form_id, 'filter', 'Apply Filters'); form_end($form_id); ?>
$hide_columns = array(); $hide_columns['pid'] = true; $hide_columns['school'] = true; $hide_columns['project_number'] = true; $q_roles_array = array(); foreach($roles as $r) { $q_roles_array[] = "FIND_IN_SET('$r',`roles`)>0"; if($r == 'student') { $hide_columns['school'] = false; } } $q_roles = "( ".join(' OR ', $q_roles_array)." )"; if(count($status) == 0) { /* Can't happen */ $q_status = '1'; } else { $a = array(); if(in_array('complete', $status)) $a[] = "(`enabled`='1' AND (`j_complete`='1' OR `s_complete`='1' OR `v_complete`='1' OR FIND_IN_SET('committee',`roles`)>0 ) )"; if(in_array('accepted', $status)) $a[] = "(`enabled`='1' AND `s_accepted`='1')"; if(in_array('active', $status)) $a[] = "`enabled`='1'"; if(in_array('new', $status)) $a[] = "(`new`='1' AND `enabled`='1')"; $q_status = "(".join(' OR ', $a).")"; } $c = count($attending); if($c == 0 || $c == 2) { /* Nothing (can't happen) or both selected, return all attending status */ $q_attending = '1'; } else { $q_attending = in_array('attending', $attending) ? "`attending`='1'" : "`attending`='0'"; } if(count($years) == 0 || $years[0] == -1) { /* This returns all rows that match the inner query, so if there's a deleted an non-deleted user in the max_year, * this returns a single line, and the INNER JOIN creates two lines. The enabled=1 filters it back down to one */ $q_join = "INNER JOIN ( SELECT max(year) max_year, username FROM users GROUP BY username ) u2 ON `u`.username = `u2`.username AND `u`.year = `u2`.max_year"; $q_year = "1"; } else { /* Not trying to find the max year for each user, just filter directly by year */ $q_year = "year IN ('".join("','", $years)."')"; $q_join = ''; } $query = "SELECT * FROM users u $q_join WHERE $q_year AND $q_roles AND $q_status AND $q_attending "; $q = $mysqli->query($query); //print($query); print($mysqli->error); $schools = school_load_all($mysqli); $projects = projects_load_all($mysqli, false); $users = array(); while($user_data = $q->fetch_assoc()) { $users[] = user_load($mysqli, -1, -1, NULL, $user_data); } ?> */ ?>
Complete+Accepted'; } else { $status .= 'Complete'; } } else { $status .= 'Incomplete'; } } } if($user['new'] == 1) { $status = 'New'; } else if($user['enabled'] == 0) { $status = 'Deleted'; } else if(!$user['attending']) { $status = 'Not Attending'; } $link = "c_user_list.php?edit={$user['uid']}"; $org = ''; if(in_array('sponsor', $user['roles'])) { $org = $user['organization'].' - '; } $school_str = $user['schools_id'] > 0 ? $schools[$user['schools_id']]['school'] : ''; $project_number = $user['s_pid'] > 0 ? $projects[$user['s_pid']]['number'] : ''; ?>
Name / Email Username School Reg ID Proj Num Role / Status Year