Charsets.php
3 years ago
Hosts.php
2 months ago
Pages.php
9 months ago
SettingsChangeHandler.php
2 weeks ago
SettingsController.php
4 days ago
SettingsRepository.php
1 year ago
TrackingConfig.php
5 months ago
UserFlagsController.php
1 year ago
UserFlagsRepository.php
3 years ago
index.php
3 years ago
Charsets.php
20 lines
| 1 | <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing |
| 2 | |
| 3 | namespace MailPoet\Settings; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | class Charsets { |
| 9 | public static function getAll() { |
| 10 | return [ |
| 11 | 'UTF-8', 'UTF-7', 'BIG5', 'ISO-2022-JP', |
| 12 | 'ISO-8859-1', 'ISO-8859-2', 'ISO-8859-3', |
| 13 | 'ISO-8859-4', 'ISO-8859-5', 'ISO-8859-6', |
| 14 | 'ISO-8859-7', 'ISO-8859-8', 'ISO-8859-9', |
| 15 | 'ISO-8859-10', 'ISO-8859-13', 'ISO-8859-14', |
| 16 | 'ISO-8859-15', 'Windows-1251', 'Windows-1252', |
| 17 | ]; |
| 18 | } |
| 19 | } |
| 20 |