Imported.php 508 B

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