Example #1
0
 public function newRun($request)
 {
     $groups_model = new GroupsModel();
     $this->data['groups'] = $groups_model->getAll();
     $this->view = 'edit';
     $this->data['form_action'] = 'create';
 }
Example #2
0
 public function indexRun($request)
 {
     $groups_model = new GroupsModel();
     $this->data['groups'] = $groups_model->getAll();
 }