Exemplo n.º 1
0
 /**
  * Return notes purchased by a user
  *
  * @author Kuldeep Dangi <*****@*****.**>
  */
 public function actionGetPurchasedNotes($id)
 {
     $model = new Extensions();
     $this->result['data'] = $model->getNotesPurchasedByUser($id);
     $this->result['success'] = true;
     $this->sendResponse($this->result);
 }