123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Downloadable\Setup\Patch\Data;
- use Magento\Eav\Setup\EavSetup;
- use Magento\Eav\Setup\EavSetupFactory;
- use Magento\Framework\App\ResourceConnection;
- use Magento\Framework\Setup\ModuleDataSetupInterface;
- use Magento\Framework\Setup\Patch\DataPatchInterface;
- use Magento\Framework\Setup\Patch\PatchVersionInterface;
- /**
- * Class InstallDownloadableAttributes
- * @package Magento\Downloadable\Setup\Patch
- */
- class InstallDownloadableAttributes implements DataPatchInterface, PatchVersionInterface
- {
- /**
- * @var \Magento\Framework\Setup\ModuleDataSetupInterface
- */
- private $moduleDataSetup;
- /**
- * @var EavSetupFactory
- */
- private $eavSetupFactory;
- /**
- * InstallDownloadableAttributes constructor.
- * @param ModuleDataSetupInterface $moduleDataSetup
- * @param EavSetupFactory $eavSetupFactory
- */
- public function __construct(
- ModuleDataSetupInterface $moduleDataSetup,
- EavSetupFactory $eavSetupFactory
- ) {
- $this->moduleDataSetup = $moduleDataSetup;
- $this->eavSetupFactory = $eavSetupFactory;
- }
- /**
- * {@inheritdoc}
- * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
- */
- public function apply()
- {
- /** @var EavSetup $eavSetup */
- $eavSetup = $this->eavSetupFactory->create(['setup' => $this->moduleDataSetup]);
- /**
- * Add attributes to the eav/attribute table
- */
- $eavSetup->addAttribute(
- \Magento\Catalog\Model\Product::ENTITY,
- 'links_purchased_separately',
- [
- 'type' => 'int',
- 'backend' => '',
- 'frontend' => '',
- 'label' => 'Links can be purchased separately',
- 'input' => '',
- 'class' => '',
- 'source' => '',
- 'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_GLOBAL,
- 'visible' => false,
- 'required' => true,
- 'user_defined' => false,
- 'default' => '',
- 'searchable' => false,
- 'filterable' => false,
- 'comparable' => false,
- 'visible_on_front' => false,
- 'unique' => false,
- 'apply_to' => 'downloadable',
- 'used_in_product_listing' => true
- ]
- );
- $eavSetup->addAttribute(
- \Magento\Catalog\Model\Product::ENTITY,
- 'samples_title',
- [
- 'type' => 'varchar',
- 'backend' => '',
- 'frontend' => '',
- 'label' => 'Samples title',
- 'input' => '',
- 'class' => '',
- 'source' => '',
- 'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_STORE,
- 'visible' => false,
- 'required' => true,
- 'user_defined' => false,
- 'default' => '',
- 'searchable' => false,
- 'filterable' => false,
- 'comparable' => false,
- 'visible_on_front' => false,
- 'unique' => false,
- 'apply_to' => 'downloadable'
- ]
- );
- $eavSetup->addAttribute(
- \Magento\Catalog\Model\Product::ENTITY,
- 'links_title',
- [
- 'type' => 'varchar',
- 'backend' => '',
- 'frontend' => '',
- 'label' => 'Links title',
- 'input' => '',
- 'class' => '',
- 'source' => '',
- 'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_STORE,
- 'visible' => false,
- 'required' => true,
- 'user_defined' => false,
- 'default' => '',
- 'searchable' => false,
- 'filterable' => false,
- 'comparable' => false,
- 'visible_on_front' => false,
- 'unique' => false,
- 'apply_to' => 'downloadable'
- ]
- );
- $eavSetup->addAttribute(
- \Magento\Catalog\Model\Product::ENTITY,
- 'links_exist',
- [
- 'type' => 'int',
- 'backend' => '',
- 'frontend' => '',
- 'label' => '',
- 'input' => '',
- 'class' => '',
- 'source' => '',
- 'global' => true,
- 'visible' => false,
- 'required' => false,
- 'user_defined' => false,
- 'default' => '0',
- 'searchable' => false,
- 'filterable' => false,
- 'comparable' => false,
- 'visible_on_front' => false,
- 'unique' => false,
- 'apply_to' => 'downloadable',
- 'used_in_product_listing' => 1
- ]
- );
- $fieldList = [
- 'price',
- 'special_price',
- 'special_from_date',
- 'special_to_date',
- 'minimal_price',
- 'cost',
- 'tier_price',
- 'weight',
- ];
- // make these attributes applicable to downloadable products
- foreach ($fieldList as $field) {
- $applyTo = explode(
- ',',
- $eavSetup->getAttribute(\Magento\Catalog\Model\Product::ENTITY, $field, 'apply_to')
- );
- if (!in_array('downloadable', $applyTo)) {
- $applyTo[] = 'downloadable';
- $eavSetup->updateAttribute(
- \Magento\Catalog\Model\Product::ENTITY,
- $field,
- 'apply_to',
- implode(',', $applyTo)
- );
- }
- }
- }
- /**
- * {@inheritdoc}
- */
- public static function getDependencies()
- {
- return [];
- }
- /**
- * {@inheritdoc}
- */
- public static function getVersion()
- {
- return '2.0.0';
- }
- /**
- * {@inheritdoc}
- */
- public function getAliases()
- {
- return [];
- }
- }
|