Example #1
0
 /**
  * Ajax request for the project overview section of the dashboard.
  */
 public function summary()
 {
     $this->response->disableLayout();
     $projects = $this->projectStore->getWhere(array(), 50, 0, array(), array('title' => 'ASC'));
     $this->response->setContent($this->getSummaryHtml($projects));
     return $this->response;
 }
Example #2
0
 /**
  * Ajax request for the project overview section of the dashboard.
  */
 public function summary()
 {
     $projects = $this->projectStore->getWhere(array(), 50, 0, array(), array('title' => 'ASC'));
     die($this->getSummaryHtml($projects));
 }