variable.php 387 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. $variable = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
  7. \Magento\Variable\Model\Variable::class
  8. );
  9. $variable->setCode(
  10. 'variable_code'
  11. )->setName(
  12. 'Variable Name'
  13. )->setPlainValue(
  14. 'Plain Value'
  15. )->setHtmlValue(
  16. 'HTML Value'
  17. )->save();