本文整理匯總了PHP中Magento\Catalog\Model\Category::getAllChildren方法的典型用法代碼示例。如果您正苦於以下問題:PHP Category::getAllChildren方法的具體用法?PHP Category::getAllChildren怎麽用?PHP Category::getAllChildren使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Magento\Catalog\Model\Category
的用法示例。
在下文中一共展示了Category::getAllChildren方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testGetAllChildren
public function testGetAllChildren()
{
$this->_model->load(4);
$this->assertEquals('4,5', $this->_model->getAllChildren());
$this->_model->load(5);
$this->assertEquals('5', $this->_model->getAllChildren());
}
示例2: isActive
/**
* Get current category
*
* @param \Magento\Catalog\Model\Category $category
*
* @return Category
*/
public function isActive($category)
{
$activeCategory = $this->_coreRegistry->registry('current_category');
$activeProduct = $this->_coreRegistry->registry('current_product');
if (!$activeCategory) {
// Check if we're on a product page
if ($activeProduct !== null) {
return in_array($category->getId(), $activeProduct->getCategoryIds());
}
return false;
}
// Check if this is the active category
if ($this->categoryFlatConfig->isFlatEnabled() && $category->getUseFlatResource() and $category->getId() == $activeCategory->getId()) {
return true;
}
// Check if a subcategory of this category is active
$childrenIds = $category->getAllChildren(true);
if (!is_null($childrenIds) and in_array($activeCategory->getId(), $childrenIds)) {
return true;
}
// Fallback - If Flat categories is not enabled the active category does not give an id
return $category->getName() == $activeCategory->getName() ? true : false;
}
示例3: createDataFromModel
/**
* @param Category $category
* @return Metadata
*/
public function createDataFromModel(Category $category)
{
$builder = $this->builder->populateWithArray($category->getData())->setCategoryId($category->getId())->setActive($category->getIsActive())->setChildren($category->getAllChildren(true));
return $builder->create();
}
示例4: getAllChildren
/**
* {@inheritdoc}
*/
public function getAllChildren($asArray = false)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAllChildren');
if (!$pluginInfo) {
return parent::getAllChildren($asArray);
} else {
return $this->___callPlugins('getAllChildren', func_get_args(), $pluginInfo);
}
}