Modified.php 496 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Adminhtml\Source\Contact;
  3. class Modified 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' => '',
  16. ],
  17. [
  18. 'value' => '1',
  19. 'label' => 'Modified',
  20. ]
  21. ];
  22. }
  23. }