本文整理匯總了PHP中Magento\Catalog\Model\Category::getProductsPosition方法的典型用法代碼示例。如果您正苦於以下問題:PHP Category::getProductsPosition方法的具體用法?PHP Category::getProductsPosition怎麽用?PHP Category::getProductsPosition使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Magento\Catalog\Model\Category
的用法示例。
在下文中一共展示了Category::getProductsPosition方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testGetProductsPosition
public function testGetProductsPosition()
{
$this->assertEquals([], $this->_model->getProductsPosition());
$this->_model->unsetData();
$this->_model->load(6);
$this->assertEquals([], $this->_model->getProductsPosition());
$this->_model->unsetData();
$this->_model->load(4);
$this->assertContains(1, $this->_model->getProductsPosition());
}
示例2: testGetProductsPosition
public function testGetProductsPosition()
{
$this->assertEquals([], $this->_model->getProductsPosition());
$this->_model->unsetData();
$this->_model = $this->getCategoryByName('Category 2');
$this->assertEquals([], $this->_model->getProductsPosition());
$this->_model->unsetData();
$this->_model = $this->getCategoryByName('Category 1.1.1');
$this->assertNotEmpty($this->_model->getProductsPosition());
}
示例3: _saveCategoryProducts
/**
* Save category products relation
*
* @param \Magento\Catalog\Model\Category $category
* @return $this
*/
protected function _saveCategoryProducts($category)
{
$category->setIsChangedProductList(false);
$id = $category->getId();
/**
* new category-product relationships
*/
$products = $category->getPostedProducts();
/**
* Example re-save category
*/
if ($products === null) {
return $this;
}
/**
* old category-product relationships
*/
$oldProducts = $category->getProductsPosition();
$insert = array_diff_key($products, $oldProducts);
$delete = array_diff_key($oldProducts, $products);
/**
* Find product ids which are presented in both arrays
* and saved before (check $oldProducts array)
*/
$update = array_intersect_key($products, $oldProducts);
$update = array_diff_assoc($update, $oldProducts);
$adapter = $this->_getWriteAdapter();
/**
* Delete products from category
*/
if (!empty($delete)) {
$cond = array('product_id IN(?)' => array_keys($delete), 'category_id=?' => $id);
$adapter->delete($this->_categoryProductTable, $cond);
}
/**
* Add products to category
*/
if (!empty($insert)) {
$data = array();
foreach ($insert as $productId => $position) {
$data[] = array('category_id' => (int) $id, 'product_id' => (int) $productId, 'position' => (int) $position);
}
$adapter->insertMultiple($this->_categoryProductTable, $data);
}
/**
* Update product positions in category
*/
if (!empty($update)) {
foreach ($update as $productId => $position) {
$where = array('category_id = ?' => (int) $id, 'product_id = ?' => (int) $productId);
$bind = array('position' => (int) $position);
$adapter->update($this->_categoryProductTable, $bind, $where);
}
}
if (!empty($insert) || !empty($delete)) {
$productIds = array_unique(array_merge(array_keys($insert), array_keys($delete)));
$this->_eventManager->dispatch('catalog_category_change_products', array('category' => $category, 'product_ids' => $productIds));
}
if (!empty($insert) || !empty($update) || !empty($delete)) {
$category->setIsChangedProductList(true);
/**
* Setting affected products to category for third party engine index refresh
*/
$productIds = array_keys($insert + $delete + $update);
$category->setAffectedProductIds($productIds);
}
return $this;
}
示例4: getProductsPosition
/**
* {@inheritdoc}
*/
public function getProductsPosition()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getProductsPosition');
if (!$pluginInfo) {
return parent::getProductsPosition();
} else {
return $this->___callPlugins('getProductsPosition', func_get_args(), $pluginInfo);
}
}