Xpressengine\Category\CategoryHandler::createItemModel PHP 메소드

createItemModel() 공개 메소드

Create new category item model
public createItemModel ( Category $category = null ) : mixed
$category Xpressengine\Category\Models\Category category instance
리턴 mixed
    public function createItemModel(Category $category = null)
    {
        $category = $category ?: $this->createModel();
        $class = $category->getItemModel();
        return new $class();
    }