本文整理汇总了PHP中Magento\Catalog\Model\Category::setPath方法的典型用法代码示例。如果您正苦于以下问题:PHP Category::setPath方法的具体用法?PHP Category::setPath怎么用?PHP Category::setPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Catalog\Model\Category
的用法示例。
在下文中一共展示了Category::setPath方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetPathIds
public function testGetPathIds()
{
$this->assertEquals([''], $this->_model->getPathIds());
$this->_model->setPathIds([1]);
$this->assertEquals([1], $this->_model->getPathIds());
$this->_model->unsetData();
$this->_model->setPath('1/2/3');
$this->assertEquals([1, 2, 3], $this->_model->getPathIds());
}
示例2: testGetPathIds
public function testGetPathIds()
{
$this->assertEquals(array(''), $this->_model->getPathIds());
$this->_model->setPathIds(array(1));
$this->assertEquals(array(1), $this->_model->getPathIds());
$this->_model->unsetData();
$this->_model->setPath('1/2/3');
$this->assertEquals(array(1, 2, 3), $this->_model->getPathIds());
}
示例3: setPath
/**
* {@inheritdoc}
*/
public function setPath($path)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'setPath');
if (!$pluginInfo) {
return parent::setPath($path);
} else {
return $this->___callPlugins('setPath', func_get_args(), $pluginInfo);
}
}