123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace Dotdigitalgroup\Email\Model\Config\Configuration;
- class Fontpicker implements \Magento\Framework\Data\OptionSourceInterface
- {
- /**
- * Options getter. web safe fonts.
- *
- * @return array
- */
- public function toOptionArray()
- {
- return [
- [
- 'value' => 'Arial, Helvetica, sans-serif',
- 'label' => 'Arial, Helvetica',
- ],
- [
- 'value' => "'Arial Black', Gadget, sans-serif",
- 'label' => 'Arial Black, Gadget',
- ],
- [
- 'value' => "'Courier New', Courier, monospace",
- 'label' => 'Courier New, Courier',
- ],
- [
- 'value' => 'Georgia, serif',
- 'label' => 'Georgia',
- ],
- [
- 'value' => "'MS Sans Serif', Geneva, sans-serif",
- 'label' => 'MS Sans Serif, Geneva',
- ],
- [
- 'value' => "'Palatino Linotype', 'Book Antiqua', Palatino, serif",
- 'label' => 'Palatino Linotype, Book Antiqua',
- ],
- [
- 'value' => 'Tahoma, Geneva, sans-serif',
- 'label' => 'Tahoma, Geneva',
- ],
- [
- 'value' => "'Times New Roman', Times, serif",
- 'label' => 'Times New Roman, Times',
- ],
- [
- 'value' => "'Trebuchet MS', Helvetica, sans-serif",
- 'label' => 'Trebuchet MS, Helvetica',
- ],
- [
- 'value' => 'Verdana, Geneva, sans-serif',
- 'label' => 'Verdana, Geneva',
- ],
- ];
- }
- }
|