Пример #1
0
 public function listAction()
 {
     $categoryId = $this->_request->getParam("categoryId");
     if ($categoryId != NULL) {
         $category_model = new Application_Model_Tocategory();
         $tocategories = $category_model->listtoCategory($categoryId);
         $this->view->tocategories = $tocategories;
         $form = new Application_Form_Tocategory();
         $this->view->form = $form;
         $this->view->id = $categoryId;
     }
 }