Minor - removing unused code

1.9.x
Julio Montoya 12 years ago
parent 5cfe24fc4d
commit 509b6e8cb6
  1. 1
      main/inc/lib/database.lib.php
  2. 5
      main/inc/lib/sessionmanager.lib.php
  3. 7
      main/mySpace/index.php

@ -1174,7 +1174,6 @@ class Database {
}
$sql = "SELECT $clean_columns FROM $table_name $conditions";
//var_dump($sql);
$result = self::query($sql);
$array = array();
//if (self::num_rows($result) > 0 ) {

@ -2406,6 +2406,7 @@ class SessionManager
* @param int $numberItems
* @param int $column
* @param string $direction
* @param string $keyword
* @return array|int
*/
public static function getAllUsersFromCoursesFromAllSessionFromStatus(
@ -2451,7 +2452,6 @@ class SessionManager
// Show all by DRH
case 'drh_all':
$sessions = SessionManager::get_sessions_followed_by_drh($userId);
$sessionIdList = array();
foreach ($sessions as $session) {
$sessionIdList[] = $session['id'];
@ -2466,6 +2466,9 @@ class SessionManager
break;
case 'admin':
break;
case 'course_coach':
//$statusConditions = " AND s.id_coach = $userId";
break;
}
$select = "SELECT DISTINCT u.*";

@ -202,6 +202,11 @@ if (empty($session_id)) {
// Getting students from courses and courses in sessions (To show the total students that the user follows)
$students = CourseManager::get_user_list_from_courses_as_coach($user_id);
/*$studentList = SessionManager::getAllUsersFromCoursesFromAllSessionFromStatus('drh', api_get_user_id());
$students = array();
foreach ($studentList as $studentData) {
$students[] = $studentData['user_id'];
}*/
// Sessions for the coach
$sessions = Tracking::get_sessions_coached_by_user($user_id);
@ -232,6 +237,8 @@ if (empty($session_id)) {
}
}
//var_dump(count($students));exit;
// Courses for the user
$count_courses = count($courses);

Loading…
Cancel
Save