예제 #1
0
파일: Form.php 프로젝트: ngardner/BentoCMS
 function actionIndex($params = '')
 {
     $objForm = new FormModel();
     $formList = $objForm->getForms();
     $this->view->assign('formList', $formList);
     $this->view->assign('content', $this->view->fetch('tpl/form/forms.tpl'));
     $this->view->assign('messages', $this->messages);
     $this->finish();
 }