![]() 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/dev/tests/integration/testsuite/Magento/Weee/_files/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); use Magento\TestFramework\Workaround\Override\Fixture\Resolver; Resolver::getInstance()->requireDataFixture('Magento/Weee/_files/fixed_product_attribute_rollback.php'); $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); /** @var \Magento\Eav\Model\Entity\Attribute\Set $attributeSet */ $attributeSet = $objectManager->create(\Magento\Eav\Model\Entity\Attribute\Set::class); $entityType = $objectManager->create(\Magento\Eav\Model\Entity\Type::class)->loadByCode('catalog_product'); $defaultSetId = $objectManager->create(\Magento\Catalog\Model\Product::class)->getDefaultAttributeSetid(); $attributeGroupId = $attributeSet->getDefaultGroupId($entityType->getDefaultAttributeSetId()); $attributeData = [ 'entity_type_id' => $entityType->getId(), 'attribute_code' => 'fixed_product_attribute', 'backend_model' => 'Magento\Weee\Model\Attribute\Backend\Weee\Tax', 'is_required' => 0, 'is_user_defined' => 1, 'is_static' => 1, 'attribute_set_id' => $defaultSetId, 'attribute_group_id' => $attributeGroupId, 'frontend_input' => 'weee', 'frontend_label' => 'fixed product tax', 'is_used_in_grid' => '1', ]; /** @var \Magento\Catalog\Model\Entity\Attribute $attribute */ $attribute = $objectManager->create(\Magento\Eav\Model\Entity\Attribute::class); $attribute->setData($attributeData); $attribute->save();