Status.php 699 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Adminhtml\Source\Contact;
  3. class Status implements \Magento\Framework\Data\OptionSourceInterface
  4. {
  5. /**
  6. * @return array
  7. */
  8. public function toOptionArray()
  9. {
  10. $options = [
  11. [
  12. 'value' => '1',
  13. 'label' => 'Subscribed'
  14. ],
  15. [
  16. 'value' => '2',
  17. 'label' => 'Not Active',
  18. ],
  19. [
  20. 'value' => '3',
  21. 'label' => 'Unsubscribed',
  22. ],
  23. [
  24. 'value' => '4',
  25. 'label' => 'Unconfirmed',
  26. ]
  27. ];
  28. return $options;
  29. }
  30. }