|
|
|
|
@ -72,7 +72,6 @@ function get_users($from, $limit, $column, $direction) |
|
|
|
|
if (api_is_drh()) { |
|
|
|
|
$column = 'u.user_id'; |
|
|
|
|
if (api_drh_can_access_all_session_content()) { |
|
|
|
|
|
|
|
|
|
$students = SessionManager::getAllUsersFromCoursesFromAllSessionFromStatus( |
|
|
|
|
'drh_all', |
|
|
|
|
api_get_user_id(), |
|
|
|
|
@ -105,7 +104,8 @@ function get_users($from, $limit, $column, $direction) |
|
|
|
|
$direction, |
|
|
|
|
$active, |
|
|
|
|
$lastConnectionDate, |
|
|
|
|
COURSEMANAGER |
|
|
|
|
COURSEMANAGER, |
|
|
|
|
$keyword |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -153,8 +153,8 @@ function get_users($from, $limit, $column, $direction) |
|
|
|
|
$row[] = $student_data['lastname']; |
|
|
|
|
$row[] = $student_data['firstname']; |
|
|
|
|
} |
|
|
|
|
$string_date = Tracking :: get_last_connection_date($student_id, true); |
|
|
|
|
$first_date = Tracking :: get_first_connection_date($student_id); |
|
|
|
|
$string_date = Tracking::get_last_connection_date($student_id, true); |
|
|
|
|
$first_date = Tracking::get_first_connection_date($student_id); |
|
|
|
|
$row[] = $first_date; |
|
|
|
|
$row[] = $string_date; |
|
|
|
|
|
|
|
|
|
@ -249,19 +249,7 @@ if ($export_csv) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$form = new FormValidator('search_user', 'get', api_get_path(WEB_CODE_PATH).'mySpace/student.php'); |
|
|
|
|
$form->addElement('text', 'keyword', get_lang('Keyword')); |
|
|
|
|
$form->addElement('select', 'active', get_lang('Status'), array(1 => get_lang('Active'), 0 => get_lang('Inactive'))); |
|
|
|
|
if (isset($_configuration['save_user_last_login']) && |
|
|
|
|
$_configuration['save_user_last_login'] |
|
|
|
|
) { |
|
|
|
|
$form->addElement( |
|
|
|
|
'select', |
|
|
|
|
'sleeping_days', |
|
|
|
|
get_lang('InactiveDays'), |
|
|
|
|
array('', 1 => 1, 5 => 5, 15 => 15, 30 => 30, 60 => 60, 90 => 90, 120 => 120) |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
$form->addElement('button', 'submit', get_lang('Search')); |
|
|
|
|
$form = Tracking::setUserSearchForm($form); |
|
|
|
|
$form->setDefaults($params); |
|
|
|
|
|
|
|
|
|
if ($export_csv) { |
|
|
|
|
|