示例#1
0
 public function getAllBadges()
 {
     $myWrapper = new Platform_Webservices_Wrapper();
     $jsonObj = $myWrapper->request('badges/');
     return Platform_Data::getDataObject($jsonObj);
 }
示例#2
0
 public function getCommentsForLesson($lessonId)
 {
     $myWrapper = new Platform_Webservices_Wrapper();
     $jsonObj = $myWrapper->request('comments/lessonid/' . $lessonId);
     return Platform_Data::getDataObject($jsonObj);
 }