/**
  * Index action method
  *
  * @return void
  */
 public function index()
 {
     $uri = substr($this->request->getRequestUri(), 9);
     if ($uri != '/') {
         if (substr($uri, -1) == '/') {
             $uri = substr($uri, 0, -1);
         }
         $category = new Model\Category();
         $category->getByUri($uri);
         if (isset($category->id)) {
             $category->filters = $category->filter ? $this->application->module('phire-categories')['filters'] : [];
             $category->show_total = $this->application->module('phire-categories')['show_total'];
             $category->datetime_formats = $this->application->module('phire-categories')['datetime_formats'];
             if ($category->pagination > 0 && $category->hasPages($category->pagination)) {
                 $limit = $category->pagination;
                 $pages = new Paginator($category->getCount(), $limit);
                 $pages->useInput(true);
             } else {
                 $limit = null;
                 $pages = null;
             }
             $this->prepareView('categories-public/category.phtml');
             $this->template = 'category.phtml';
             $this->view->title = 'Category : ' . $category->title;
             $this->view->category_id = $category->id;
             $this->view->category_title = $category->title;
             $this->view->category_slug = $category->slug;
             $this->view->category_nav = $category->getNav($this->application->module('phire-categories')['nav_config']);
             $this->view->pages = $pages;
             $this->view->category_breadcrumb = $category->getBreadcrumb($category->id, $this->application->module('phire-categories')['separator']);
             $this->view->items = $category->getItems($limit, $this->request->getQuery('page'));
             $this->send();
         } else {
             $this->error();
         }
     } else {
         $this->redirect(BASE_PATH == '' ? '/' : BASE_PATH);
     }
 }
Example #2
0
 /**
  * Get category items
  *
  * @param  mixed $id
  * @param  int   $limit
  * @return array
  */
 public function getCategoryChildren($id, $limit = null)
 {
     if (!is_numeric($id)) {
         $category = Table\Categories::findBy(['title' => $id]);
         if (isset($category->id)) {
             $id = $category->id;
         }
     }
     $options = ['order' => 'order ASC'];
     if (null !== $limit) {
         $options['limit'] = (int) $limit;
     }
     $children = Table\Categories::findBy(['parent_id' => $id], $options);
     $items = [];
     if ($children->hasRows()) {
         foreach ($children->rows() as $child) {
             $c = new Category();
             $c->show_total = $this->show_total;
             $c->filters = $this->filters;
             $c->getById($child->id);
             $childItem = $c->getItems(1);
             $filtered = [];
             if (isset($childItem[0])) {
                 foreach ($childItem[0] as $key => $value) {
                     $filtered['item_' . $key] = $value;
                 }
             }
             $items[] = new \ArrayObject(array_merge(['category_id' => $child->id, 'category_title' => $child->title, 'category_uri' => '/category' . $child->uri, 'category_total' => Table\CategoryItems::findBy(['category_id' => $child->id])->count()], $filtered), \ArrayObject::ARRAY_AS_PROPS);
         }
     }
     return $items;
 }
Example #3
0
 /**
  * Get all category values for the form object
  *
  * @param  AbstractController $controller
  * @param  Application        $application
  * @return void
  */
 public static function parseCategories(AbstractController $controller, Application $application)
 {
     if ($controller->hasView() && ($controller instanceof \Phire\Categories\Controller\IndexController || $controller instanceof \Phire\Content\Controller\IndexController)) {
         $body = $controller->response()->getBody();
         $category = new Model\Category();
         $category->show_total = $application->module('phire-categories')['show_total'];
         $category->filters = $application->module('phire-categories')['filters'];
         $category->datetime_formats = $application->module('phire-categories')['datetime_formats'];
         $catIds = self::parseCategoryIds($body);
         $catParentIds = self::parseParentCategoryIds($body);
         if (count($catIds) > 0) {
             foreach ($catIds as $key => $value) {
                 $category->getById($value['id']);
                 $categoryName = 'category_' . $value['id'];
                 if (isset($value['limit']) && $value['limit'] > 0 && $category->hasPages($value['limit'])) {
                     $limit = $value['limit'];
                     $pages = null;
                 } else {
                     if ($category->pagination > 0 && $category->hasPages($category->pagination)) {
                         $limit = $category->pagination;
                         $pages = new \Pop\Paginator\Paginator($category->getCount(), $limit);
                         $pages->useInput(true);
                     } else {
                         $limit = null;
                         $pages = null;
                     }
                 }
                 if (null !== $pages) {
                     $controller->view()->pages = $pages;
                 }
                 $controller->view()->{$categoryName} = $category->getItems($limit, $controller->request()->getQuery('page'));
             }
         }
         if (count($catParentIds) > 0) {
             foreach ($catParentIds as $key => $value) {
                 if (isset($value['limit']) && $value['limit'] > 0) {
                     $limit = $value['limit'];
                     $categoryName = 'categories_' . $value['id'] . '_' . $limit;
                 } else {
                     $limit = null;
                     $categoryName = 'categories_' . $value['id'];
                 }
                 $controller->view()->{$categoryName} = $category->getCategoryChildren($value['id'], $limit);
             }
         }
         $controller->view()->setTemplate($body);
         $body = $controller->view()->render();
         $controller->response()->setBody($body);
     }
 }
 /**
  * Remove action method
  *
  * @return void
  */
 public function remove()
 {
     if ($this->request->isPost()) {
         $category = new Model\Category();
         $category->remove($this->request->getPost());
     }
     $this->sess->setRequestValue('removed', true);
     $this->redirect(BASE_PATH . APP_URI . '/categories');
 }