Catalogvalues.php 497 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Config\Configuration;
  3. class Catalogvalues implements \Magento\Framework\Data\OptionSourceInterface
  4. {
  5. /**
  6. * Get options.
  7. *
  8. * @return array
  9. */
  10. public function toOptionArray()
  11. {
  12. return [
  13. [
  14. 'value' => '1',
  15. 'label' => 'Default Level',
  16. ],
  17. [
  18. 'value' => '2',
  19. 'label' => 'Store Level',
  20. ],
  21. ];
  22. }
  23. }