Esempio n. 1
0
 /**
  * Display all the courses in the given course category. I could have used a parameter here
  * @param string $categoryCode Category code
  * @param int $randomValue
  * @param array $limit will be used if $random_value is not set.
  * This array should contains 'start' and 'length' keys
  * @return array Courses data
  */
 public function browse_courses_in_category($categoryCode, $randomValue = null, $limit = array())
 {
     return CourseCategoryManager::browseCoursesInCategory($categoryCode, $randomValue, $limit);
 }