Styling.php 542 B

123456789101112131415161718192021
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Config\Configuration;
  3. class Styling implements \Magento\Framework\Data\OptionSourceInterface
  4. {
  5. /**
  6. * Options getter. Styling options.
  7. *
  8. * @return array
  9. */
  10. public function toOptionArray()
  11. {
  12. return [
  13. ['value' => '0', 'label' => '---- Default Option ----'],
  14. ['value' => 'bold', 'label' => 'Bold'],
  15. ['value' => 'italic', 'label' => 'Italic'],
  16. ['value' => 'underline', 'label' => 'Underline'],
  17. ];
  18. }
  19. }