moduleDataSetup = $moduleDataSetup; $this->categorySetupFactory = $categorySetupFactory; } /** * {@inheritdoc} */ public function apply() { // set new resource model paths /** @var CategorySetup $categorySetup */ $categorySetup = $this->categorySetupFactory->create(['setup' => $this->moduleDataSetup]); $categorySetup->updateEntityType( \Magento\Catalog\Model\Category::ENTITY, 'entity_model', \Magento\Catalog\Model\ResourceModel\Category::class ); $categorySetup->updateEntityType( \Magento\Catalog\Model\Category::ENTITY, 'attribute_model', \Magento\Catalog\Model\ResourceModel\Eav\Attribute::class ); $categorySetup->updateEntityType( \Magento\Catalog\Model\Category::ENTITY, 'entity_attribute_collection', \Magento\Catalog\Model\ResourceModel\Category\Attribute\Collection::class ); $categorySetup->updateAttribute( \Magento\Catalog\Model\Category::ENTITY, 'custom_design_from', 'attribute_model', \Magento\Catalog\Model\ResourceModel\Eav\Attribute::class ); $categorySetup->updateEntityType( \Magento\Catalog\Model\Product::ENTITY, 'entity_model', \Magento\Catalog\Model\ResourceModel\Product::class ); $categorySetup->updateEntityType( \Magento\Catalog\Model\Product::ENTITY, 'attribute_model', \Magento\Catalog\Model\ResourceModel\Eav\Attribute::class ); $categorySetup->updateEntityType( \Magento\Catalog\Model\Product::ENTITY, 'entity_attribute_collection', \Magento\Catalog\Model\ResourceModel\Product\Attribute\Collection::class ); } /** * {@inheritdoc} */ public static function getDependencies() { return [ InstallDefaultCategories::class, ]; } /** * {@inheritdoc} */ public static function getVersion() { return '2.0.2'; } /** * {@inheritdoc} */ public function getAliases() { return []; } }