@ -510,8 +512,10 @@ function get_user_data($from, $number_of_items, $column, $direction)
$temp[] = get_lang('CourseManager');
else
$temp[] = '-';
$temp[] = $o_course_user['active'];
$temp[] = $user_id;
}
else
{
@ -520,9 +524,10 @@ function get_user_data($from, $number_of_items, $column, $direction)
$temp[] = $o_course_user['lastname'];
$temp[] = $o_course_user['role'];
$temp[] = implode(', ',$groups_name);//Group
$temp[] = $o_course_user['official_code'];
$temp[] = $o_course_user['official_code'];
$temp[] = $user_id;
}
}
$a_users[$user_id] = $temp;
}
}
@ -531,6 +536,38 @@ function get_user_data($from, $number_of_items, $column, $direction)
}
/**
* Build the active-column of the table to lock or unlock a certain user
* lock = the user can no longer use this account
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @param int $active the current state of the account
* @param int $user_id The user id
* @param string $url_params
* @return string Some HTML-code with the lock/unlock button
*/
function active_filter($active, $url_params, $row)
{
global $_user;
if ($active=='1')
{
$action='AccountActive';
$image='right';
}
if ($active=='0')
{
$action='AccountInactive';
$image='wrong';
}
if ($row['0']<>$_user['user_id']) // you cannot lock yourself out otherwise you could disable all the accounts including your own => everybody is locked out and nobody can change it anymore.