|
|
|
@ -49,13 +49,10 @@ class Auth |
|
|
|
|
|
|
|
|
|
// Secondly we select the courses that are in a category (user_course_cat<>0) and sort these according to the sort of the category |
|
|
|
|
$user_id = intval($user_id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sql_select_courses = "SELECT course.code k, course.visual_code vc, course.subscribe subscr, course.unsubscribe unsubscr, |
|
|
|
|
course.title i, course.tutor_name t, course.db_name db, course.directory dir, course_rel_user.status status, |
|
|
|
|
course_rel_user.sort sort, course_rel_user.user_course_cat user_course_cat |
|
|
|
|
FROM $TABLECOURS course, |
|
|
|
|
$TABLECOURSUSER course_rel_user |
|
|
|
|
FROM $TABLECOURS course, $TABLECOURSUSER course_rel_user |
|
|
|
|
WHERE course.code = course_rel_user.course_code |
|
|
|
|
AND course_rel_user.relation_type<>".COURSE_RELATION_TYPE_RRHH." |
|
|
|
|
AND course_rel_user.user_id = '".$user_id."' $without_special_courses |
|
|
|
@ -65,7 +62,6 @@ class Auth |
|
|
|
|
//we only need the database name of the course |
|
|
|
|
$courses[] = array('db' => $row['db'], 'code' => $row['k'], 'visual_code' => $row['vc'], 'title' => $row['i'], 'directory' => $row['dir'], 'status' => $row['status'], 'tutor' => $row['t'], 'subscribe' => $row['subscr'], 'unsubscribe' => $row['unsubscr'], 'sort' => $row['sort'], 'user_course_category' => $row['user_course_cat']); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return $courses; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -427,10 +423,8 @@ class Auth |
|
|
|
|
* @param string Category code |
|
|
|
|
* @return array Courses data |
|
|
|
|
*/ |
|
|
|
|
public function browse_courses_in_category($category_code) { |
|
|
|
|
|
|
|
|
|
public function browse_courses_in_category($category_code, $random_value = null) { |
|
|
|
|
global $_configuration; |
|
|
|
|
|
|
|
|
|
$tbl_course = Database::get_main_table(TABLE_MAIN_COURSE); |
|
|
|
|
$TABLE_COURSE_FIELD = Database :: get_main_table(TABLE_MAIN_COURSE_FIELD); |
|
|
|
|
$TABLE_COURSE_FIELD_VALUE = Database :: get_main_table(TABLE_MAIN_COURSE_FIELD_VALUES); |
|
|
|
@ -451,11 +445,17 @@ class Auth |
|
|
|
|
$without_special_courses = ' AND course.code NOT IN ('.implode(',',$special_course_list).')'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!empty($random_value)) { |
|
|
|
|
$random_value = intval($random_value); |
|
|
|
|
$sql = "SELECT * FROM $tbl_course WHERE 1 $without_special_courses ORDER BY RAND() LIMIT $random_value"; |
|
|
|
|
/*SELECT * FROM $tbl_course, (SELECT CEIL(MAX($tbl_course.id) * RAND()) AS randId FROM $tbl_course) AS someRandId |
|
|
|
|
WHERE $tbl_course.id >= someRandId.randId LIMIT 10 |
|
|
|
|
*/ |
|
|
|
|
} else { |
|
|
|
|
$category_code = Database::escape_string($category_code); |
|
|
|
|
|
|
|
|
|
$my_category = (empty($category) ? " IS NULL" : "='".$category."'"); |
|
|
|
|
|
|
|
|
|
//$my_category = (empty($category) ? " IS NULL" : "='".$category."'"); |
|
|
|
|
$sql = "SELECT * FROM $tbl_course WHERE category_code='$category_code' $without_special_courses ORDER BY title, visual_code"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//showing only the courses of the current Dokeos access_url_id |
|
|
|
|
if ($_configuration['multiple_access_urls']) { |
|
|
|
|