예제 #1
0
파일: Study.php 프로젝트: efueger/gewisweb
 /**
  * Get all studies of the TU/e
  *
  * @return array
  */
 public function getAllStudies()
 {
     return $this->client->GeefDoelgroepen('2013', 'NL');
 }
예제 #2
0
 /**
  * Get a single course.
  *
  * @param string $code
  * @param string $year
  *
  * @return SimpleXMLElement
  */
 public function getCourse($code, $year)
 {
     return $this->client->GeefVakGegevens($code, $year, 'NL');
 }
예제 #3
0
 /**
  * Get all studies of the TU/e
  *
  * @param string $year
  *
  * @return array
  */
 public function getAllStudies($year)
 {
     return $this->client->GeefDoelgroepen($year, 'NL');
 }
예제 #4
0
파일: Course.php 프로젝트: efueger/gewisweb
 /**
  * Get a single course.
  *
  * @param string $code
  *
  * @return SimpleXMLElement
  */
 public function getCourse($code)
 {
     return $this->client->GeefVakGegevens($code, '2013', 'NL');
 }