prefs->privilege(S_MODERATOR)) { // Can't moderate without being moderator error_page("You are not authorized to banish users."); } $userid = get_int('userid'); $user = BoincUser::lookup_id($userid); page_head('Banishment Vote'); echo "
\n"; echo form_tokens($logged_in_user->authenticator); start_table(); row1("Banishment Vote"); if (get_str('action')=="start") { if (!$user) { error_page("no user"); } $x = $user->banished_until; if ($x>time()) { error_page("User is already banished"); } //display input that selects reason echo ""; echo "\n"; row1("Are you sure you want to banish ".$user->name."? This will prevent ".$user->name." from posting for chosen time period.
It should be done only if ".$user->name." has consistently exhibited trollish behavior."); row2("", "Select the reason category, optionally write a longer description of why the user should be banished."); row2("Category", ""); row2("Reason
Mailed if nonempty", ""); row2( "", "" ); } elseif (get_str('action')=="yes") { vote_yes($config,$logged_in_user,$user); } elseif (get_str('action')=="no") { vote_no($config,$logged_in_user,$user); } else { error_page( "Unknown action"); } end_table(); echo "
"; page_tail(); ?>