![]() 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/Catalog/_files/ |
<?php /** * "Input" fixture of product EAV attribute. * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @var \Magento\Eav\Model\Entity\Type $entityType */ $entityType = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( \Magento\Eav\Model\Entity\Type::class ); $entityType->loadByCode('catalog_product'); $defaultSetId = $entityType->getDefaultAttributeSetId(); /** @var \Magento\Eav\Model\Entity\Attribute\Set $defaultSet */ $defaultSet = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( \Magento\Eav\Model\Entity\Attribute\Set::class ); $defaultSet->load($defaultSetId); $defaultGroupId = $defaultSet->getDefaultGroupId(); /** @var $attribute \Magento\Catalog\Model\ResourceModel\Eav\Attribute */ $attribute = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( \Magento\Catalog\Model\ResourceModel\Eav\Attribute::class ); $attribute->setAttributeCode( 'unique_input_attribute' )->setEntityTypeId( $entityType->getEntityTypeId() )->setAttributeGroupId( $defaultGroupId )->setAttributeSetId( $defaultSetId )->setFrontendInput( 'text' )->setFrontendLabel( 'Unique Input Attribute' )->setBackendType( 'varchar' )->setIsUserDefined( 1 )->setIsUnique( 1 )->save();