DeferredEmailQueue.php
4 weeks ago
EmailColors.php
11 months ago
EmailFont.php
1 year ago
EmailLogger.php
4 weeks ago
EmailStyleSync.php
11 months ago
OrderPriceFormatter.php
1 year ago
EmailFont.php
35 lines
| 1 | <?php |
| 2 | /** |
| 3 | * EmailFont class file |
| 4 | */ |
| 5 | |
| 6 | declare( strict_types = 1 ); |
| 7 | |
| 8 | namespace Automattic\WooCommerce\Internal\Email; |
| 9 | |
| 10 | /** |
| 11 | * Helper class for getting fonts for emails. |
| 12 | * |
| 13 | * @internal Just for internal use. |
| 14 | */ |
| 15 | class EmailFont { |
| 16 | |
| 17 | /** |
| 18 | * Array of font families supported in email templates |
| 19 | * |
| 20 | * @var string[] |
| 21 | */ |
| 22 | public static $font = array( |
| 23 | 'Arial' => "Arial, 'Helvetica Neue', Helvetica, sans-serif", |
| 24 | 'Comic Sans MS' => "'Comic Sans MS', 'Marker Felt-Thin', Arial, sans-serif", |
| 25 | 'Courier New' => "'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace", |
| 26 | 'Georgia' => "Georgia, Times, 'Times New Roman', serif", |
| 27 | 'Helvetica' => "'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif", |
| 28 | 'Lucida' => "'Lucida Sans Unicode', 'Lucida Grande', sans-serif", |
| 29 | 'Tahoma' => 'Tahoma, Verdana, Segoe, sans-serif', |
| 30 | 'Times New Roman' => "'Times New Roman', Times, Baskerville, Georgia, serif", |
| 31 | 'Trebuchet MS' => "'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif", |
| 32 | 'Verdana' => 'Verdana, Geneva, sans-serif', |
| 33 | ); |
| 34 | } |
| 35 |