Transactionaldata.php 587 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Config\Developer;
  3. class Transactionaldata implements \Magento\Framework\Data\OptionSourceInterface
  4. {
  5. /**
  6. * Get options.
  7. *
  8. * @return array
  9. */
  10. public function toOptionArray()
  11. {
  12. return [
  13. ['value' => '50', 'label' => '50'],
  14. ['value' => '100', 'label' => '100'],
  15. ['value' => '200', 'label' => '200'],
  16. ['value' => '300', 'label' => '300'],
  17. ['value' => '400', 'label' => '400'],
  18. ['value' => '500', 'label' => '500'],
  19. ];
  20. }
  21. }