Exemple #1
0
 /**
  * Displays a list of records
  *
  * @return  void
  */
 public function displayTask()
 {
     // Instantiate a new view
     $acl = TheACL::getACL();
     // Fetch results
     $aro = new Aro($this->database);
     $rows = $aro->getRecords();
     // Output HTML
     $this->view->set('acl', $acl)->set('rows', $rows)->display();
 }