Intervalminute.php 722 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Config\Source\Carts;
  3. class Intervalminute implements \Magento\Framework\Data\OptionSourceInterface
  4. {
  5. /**
  6. * Lost basket hour options.
  7. *
  8. * @return array
  9. */
  10. public function toOptionArray()
  11. {
  12. return [
  13. ['value' => '15', 'label' => __('15 Minutes')],
  14. ['value' => '20', 'label' => __('20 Minutes')],
  15. ['value' => '25', 'label' => __('25 Minutes')],
  16. ['value' => '30', 'label' => __('30 Minutes')],
  17. ['value' => '40', 'label' => __('40 Minutes')],
  18. ['value' => '50', 'label' => __('50 Minutes')],
  19. ['value' => '60', 'label' => __('60 Minutes')],
  20. ];
  21. }
  22. }