12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Setup\Patch\Data;
- use Magento\Customer\Model\Customer;
- use Magento\Customer\Setup\CustomerSetupFactory;
- use Magento\Framework\App\ResourceConnection;
- use Magento\Framework\Setup\ModuleDataSetupInterface;
- use Magento\Framework\Setup\Patch\DataPatchInterface;
- use Magento\Framework\Setup\Patch\PatchVersionInterface;
- /**
- * Class AddCustomerUpdatedAtAttribute
- * @package Magento\Customer\Setup\Patch
- */
- class AddCustomerUpdatedAtAttribute implements DataPatchInterface, PatchVersionInterface
- {
- /**
- * @var ModuleDataSetupInterface
- */
- private $moduleDataSetup;
- /**
- * @var CustomerSetupFactory
- */
- private $customerSetupFactory;
- /**
- * AddCustomerUpdatedAtAttribute constructor.
- * @param ModuleDataSetupInterface $moduleDataSetup
- * @param CustomerSetupFactory $customerSetupFactory
- */
- public function __construct(
- ModuleDataSetupInterface $moduleDataSetup,
- CustomerSetupFactory $customerSetupFactory
- ) {
- $this->moduleDataSetup = $moduleDataSetup;
- $this->customerSetupFactory = $customerSetupFactory;
- }
- /**
- * {@inheritdoc}
- */
- public function apply()
- {
- $customerSetup = $this->customerSetupFactory->create(['setup' => $this->moduleDataSetup]);
- $customerSetup->addAttribute(
- Customer::ENTITY,
- 'updated_at',
- [
- 'type' => 'static',
- 'label' => 'Updated At',
- 'input' => 'date',
- 'required' => false,
- 'sort_order' => 87,
- 'visible' => false,
- 'system' => false,
- ]
- );
- }
- /**
- * {@inheritdoc}
- */
- public static function getDependencies()
- {
- return [
- UpdateIdentifierCustomerAttributesVisibility::class,
- ];
- }
- /**
- * {@inheritdoc}
- */
- public static function getVersion()
- {
- return '2.0.4';
- }
- /**
- * {@inheritdoc}
- */
- public function getAliases()
- {
- return [];
- }
- }
|