![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-page-builder/Setup/Patch/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\PageBuilder\Setup\Patch\Data; use Magento\Framework\Setup\Patch\DataPatchInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; /** * Update description product attribute to by default enable Page Builder */ class UpdateProductAttribute implements DataPatchInterface { /** * @var ModuleDataSetupInterface $moduleDataSetup */ private $moduleDataSetup; /** * @var \Magento\Eav\Setup\EavSetupFactory */ private $eavSetupFactory; /** * @param \Magento\Eav\Setup\EavSetupFactory $eavSetupFactory * @param ModuleDataSetupInterface $moduleDataSetup */ public function __construct( \Magento\Eav\Setup\EavSetupFactory $eavSetupFactory, ModuleDataSetupInterface $moduleDataSetup ) { $this->eavSetupFactory = $eavSetupFactory; $this->moduleDataSetup = $moduleDataSetup; } /** * Modify EAV tables to update description attribute page builder enabled value * * @return void */ public function apply() { // set new resource model paths /** @var \Magento\Eav\Setup\EavSetup $eavSetup */ $eavSetup = $this->eavSetupFactory->create(['setup' => $this->moduleDataSetup]); $eavSetup->updateAttribute( \Magento\Catalog\Model\Product::ENTITY, 'description', [ 'is_pagebuilder_enabled' => 1 ] ); } /** * @inheritdoc */ public function getAliases() { return []; } /** * @inheritdoc */ public static function getDependencies() { return []; } }