Guest.php 479 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Adminhtml\Source\Contact;
  3. class Guest implements \Magento\Framework\Data\OptionSourceInterface
  4. {
  5. /**
  6. * @return array
  7. */
  8. public function toOptionArray()
  9. {
  10. $options = [
  11. [
  12. 'value' => 'null',
  13. 'label' => ''
  14. ],
  15. [
  16. 'value' => '1',
  17. 'label' => 'Guest',
  18. ]
  19. ];
  20. return $options;
  21. }
  22. }