Пример #1
0
 public function deleteAction()
 {
     $id = $this->_request->getParam("id");
     $categoryId = $this->_request->getParam("categoryId");
     if (!empty($id)) {
         $to_model = new Application_Model_Tocategory();
         $to_model->deleteTocategory($id);
     }
     $this->redirect("tocategory/list/categoryId/" . $categoryId);
 }