本文整理汇总了PHP中app\modules\shop\models\Category::createEmptyCategory方法的典型用法代码示例。如果您正苦于以下问题:PHP Category::createEmptyCategory方法的具体用法?PHP Category::createEmptyCategory怎么用?PHP Category::createEmptyCategory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\modules\shop\models\Category
的用法示例。
在下文中一共展示了Category::createEmptyCategory方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createCategory
/**
* @param array $item
* @param int $parentId
* @return int
*/
protected function createCategory($item, $parentId)
{
if (empty($item) || empty($item[static::ELEMENT_ID]) || empty($item[static::ELEMENT_NAIMENOVANIE])) {
return $parentId;
}
$result = $parentId;
if (isset($this->categoryCache[$item[static::ELEMENT_ID]])) {
$result = $this->categoryCache[$item[static::ELEMENT_ID]];
} else {
$guid = CommercemlGuid::findOne(['guid' => $item[static::ELEMENT_ID]]);
if (empty($guid)) {
$guid = new CommercemlGuid();
$guid->guid = $item[static::ELEMENT_ID];
$guid->name = $item[static::ELEMENT_NAIMENOVANIE];
$guid->type = 'CATEGORY';
$guid->model_id = 1;
$category = Category::findOne(['slug' => Helper::createSlug($item[static::ELEMENT_NAIMENOVANIE]), 'parent_id' => $parentId]);
if (empty($category)) {
if (null !== ($category = Category::createEmptyCategory($parentId, null, $item[static::ELEMENT_NAIMENOVANIE]))) {
$guid->model_id = $category->id;
}
} else {
$guid->model_id = $category->id;
}
$guid->save();
$guid->refresh();
$result = $this->categoryCache[$item[static::ELEMENT_ID]] = $guid->model_id;
} else {
$result = $this->categoryCache[$item[static::ELEMENT_ID]] = $guid->model_id;
}
}
return $result;
}