Exemplo n.º 1
0
 /**
  * Return all notes in a category
  *
  * @author Kuldeep Dangi <*****@*****.**>
  */
 public function actionGetCategoryNotes($categoryId)
 {
     $this->result['success'] = true;
     $model = new Extensions();
     if ($categoryId) {
         $this->result['data'] = $model->getNotesByCategory($categoryId);
     } else {
         $this->result['data'] = $model->getAllNotes();
     }
     $this->sendResponse($this->result);
 }