public function indexAction() { $linkMapper = new LinkMapper(); $categoryMapper = new CategoryMapper(); if ($this->getRequest()->getParam('cat_id')) { $category = $categoryMapper->getCategoryById($this->getRequest()->getParam('cat_id')); $parentCategories = $categoryMapper->getCategoriesForParent($category->getParentId()); $this->getLayout()->getHmenu()->add($this->getTranslator()->trans('menuLinks'), array('action' => 'index')); if (!empty($parentCategories)) { foreach ($parentCategories as $parent) { $this->getLayout()->getHmenu()->add($parent->getName(), array('action' => 'index', 'cat_id' => $parent->getId())); } } $this->getLayout()->getHmenu()->add($category->getName(), array('action' => 'index', 'cat_id' => $this->getRequest()->getParam('cat_id'))); $links = $linkMapper->getLinks(array('cat_id' => $this->getRequest()->getParam('cat_id'))); $categorys = $categoryMapper->getCategories(array('parent_id' => $this->getRequest()->getParam('cat_id'))); } else { $this->getLayout()->getHmenu()->add($this->getTranslator()->trans('menuLinks'), array('action' => 'index')); $links = $linkMapper->getLinks(array('cat_id' => 0)); $categorys = $categoryMapper->getCategories(array('parent_id' => 0)); } $this->getView()->set('links', $links); $this->getView()->set('categorys', $categorys); }
public function treatCatAction() { $this->getLayout()->getAdminHmenu()->add($this->getTranslator()->trans('menuLinks'), array('action' => 'index'))->add($this->getTranslator()->trans('menuActionNewCategory'), array('action' => 'treat')); $categorykMapper = new CategoryMapper(); if ($this->getRequest()->getParam('id')) { $this->getView()->set('category', $categorykMapper->getCategoryById($this->getRequest()->getParam('id'))); } if ($this->getRequest()->isPost()) { $model = new CategoryModel(); if ($this->getRequest()->getParam('id')) { $model->setId($this->getRequest()->getParam('id')); } $name = $this->getRequest()->getPost('name'); if (empty($name)) { $this->addMessage('missingName', 'danger'); } else { $model->setName($this->getRequest()->getPost('name')); $model->setDesc($this->getRequest()->getPost('desc')); $model->setParentID($this->getRequest()->getParam('parentId')); $categorykMapper->save($model); $this->addMessage('saveSuccess'); if ($this->getRequest()->getParam('parentId')) { $this->redirect(array('action' => 'index', 'cat_id' => $this->getRequest()->getParam('parentId'))); } else { $this->redirect(array('action' => 'index')); } } } }