Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function getCurrentCategoryIdentifier()
 {
     if ($this->hasCurrentCategory()) {
         return $this->currentCategory->getId();
     }
     return null;
 }
Beispiel #2
0
 /**
  * Returns a dataset of products recommended for category
  *
  * @param CategoryInterface $category
  *
  * @return array
  */
 public function getProductRecommendationsForCategory(CategoryInterface $category)
 {
     $conditions = new ConditionsCollection();
     $conditions->add(new Eq('category', $category->getId()));
     return $this->dataset->getResult('datagrid', ['limit' => 3, 'order_by' => 'name', 'order_dir' => 'asc', 'conditions' => $conditions]);
 }
 /**
  * {@inheritdoc}
  */
 public function indexAction(CategoryInterface $category)
 {
     $this->addBreadCrumbItem(new BreadcrumbItem(['name' => $category->translate()->getName()]));
     $this->manager->getCategoryContext()->setCurrentCategory($category);
     return $this->displayTemplate('index', ['category' => $category]);
 }
Beispiel #4
0
 /**
  * {@inheritdoc}
  */
 public function addChild(CategoryInterface $child)
 {
     $this->children[] = $child;
     $child->setParent($this);
 }