Ejemplo n.º 1
0
 public function deleteconfirmAction()
 {
     $this->_helper->layout->disableLayout();
     $this->_helper->viewRenderer->setNoRender(TRUE);
     $id = $this->_request->getParam('orderId');
     $modelPc = new App_Model_Db_Table_PaymentConfirmation();
     $rowPc = $modelPc->find($id)->current();
     if ($rowPc) {
         $rowPc->delete();
     }
 }