123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\GiftMessage\Setup\Patch\Data;
- use Magento\Catalog\Model\Product;
- use Magento\Catalog\Setup\CategorySetupFactory;
- use Magento\Framework\Setup\ModuleContextInterface;
- use Magento\Framework\Setup\ModuleDataSetupInterface;
- use Magento\Framework\Setup\UpgradeDataInterface;
- use Magento\Framework\App\ResourceConnection;
- use Magento\Framework\Setup\Patch\DataPatchInterface;
- use Magento\Framework\Setup\Patch\PatchVersionInterface;
- class MoveGiftMessageToGiftOptionsGroup implements DataPatchInterface, PatchVersionInterface
- {
- /**
- * @var \Magento\Framework\Setup\ModuleDataSetupInterface
- */
- private $moduleDataSetup;
- /**
- * @var CategorySetupFactory
- */
- private $categorySetupFactory;
- /**
- * MoveGiftMessageToGiftOptionsGroup constructor.
- * @param \Magento\Framework\Setup\ModuleDataSetupInterface $moduleDataSetup
- * @param CategorySetupFactory $categorySetupFactory
- */
- public function __construct(
- \Magento\Framework\Setup\ModuleDataSetupInterface $moduleDataSetup,
- CategorySetupFactory $categorySetupFactory
- ) {
- $this->moduleDataSetup = $moduleDataSetup;
- $this->categorySetupFactory = $categorySetupFactory;
- }
- /**
- * {@inheritdoc}
- */
- public function apply()
- {
- $this->moduleDataSetup->getConnection()->startSetup();
- /** @var \Magento\Catalog\Setup\CategorySetup $categorySetup */
- $categorySetup = $this->categorySetupFactory->create(['setup' => $this->moduleDataSetup]);
- $entityTypeId = $categorySetup->getEntityTypeId(Product::ENTITY);
- $attributeSetId = $categorySetup->getDefaultAttributeSetId(Product::ENTITY);
- $attribute = $categorySetup->getAttribute($entityTypeId, 'gift_message_available');
- $groupName = 'Gift Options';
- if (!$categorySetup->getAttributeGroup(Product::ENTITY, $attributeSetId, $groupName)) {
- $categorySetup->addAttributeGroup(Product::ENTITY, $attributeSetId, $groupName, 60);
- }
- $categorySetup->addAttributeToGroup(
- $entityTypeId,
- $attributeSetId,
- $groupName,
- $attribute['attribute_id'],
- 10
- );
- $this->moduleDataSetup->getConnection()->endSetup();
- }
- /**
- * {@inheritdoc}
- */
- public static function getDependencies()
- {
- return [
- AddGiftMessageAttributes::class,
- ];
- }
- /**
- * {@inheritdoc}
- */
- public static function getVersion()
- {
- return '2.0.1';
- }
- /**
- * {@inheritdoc}
- */
- public function getAliases()
- {
- return [];
- }
- }
|