Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
attribute_user_fullname.php
Go to the documentation of this file.
1 <?php
7 $model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(\Magento\Customer\Model\Attribute::class);
8 $model->loadByCode('customer', 'prefix')->setIsVisible('1');
9 $model->save();
10 
11 $model->loadByCode('customer', 'middlename')->setIsVisible('1');
12 $model->save();
13 
14 $model->loadByCode('customer', 'suffix')->setIsVisible('1');
15 $model->save();