コード例 #1
0
 public function deleteAction()
 {
     //echo "<pre>"; print_r($this->_request->getParams()); exit;
     $formObj = new Application_Model_Form();
     $deleteidArray = $this->request->getParam('deleteid');
     foreach ($deleteidArray as $formid) {
         //echo $formid; exit;
         $formObj->deleteWebformById($formid);
     }
     $this->_redirector->gotoUrl('/form/create/');
 }