| 1 |
<?php |
| 2 |
|
| 3 |
declare(strict_types=1); |
| 4 |
|
| 5 |
namespace RenzoJohnson\Blocks\Settings; |
| 6 |
|
| 7 |
\defined( 'ABSPATH' ) || exit; |
| 8 |
|
| 9 |
enum SanitizerType: string { |
| 10 |
case AbsoluteInteger = 'absolute-integer'; |
| 11 |
case BccList = 'bcc-list'; |
| 12 |
case Boolean = 'boolean'; |
| 13 |
case Email = 'email'; |
| 14 |
case Ga4DomainList = 'ga4-domain-list'; |
| 15 |
case Ga4MeasurementId = 'ga4-measurement-id'; |
| 16 |
case Ga4ProductIdentifier = 'ga4-product-identifier'; |
| 17 |
case Hour = 'hour'; |
| 18 |
case LoginSlug = 'login-slug'; |
| 19 |
case LiveChatCrispId = 'livechat-crisp-id'; |
| 20 |
case LiveChatOlarkId = 'livechat-olark-id'; |
| 21 |
case LiveChatTawkId = 'livechat-tawk-id'; |
| 22 |
case Secret = 'secret'; |
| 23 |
case ScriptHandleList = 'script-handle-list'; |
| 24 |
case Text = 'text'; |
| 25 |
case Textarea = 'textarea'; |
| 26 |
case TimecheckSeconds = 'timecheck-seconds'; |
| 27 |
case Url = 'url'; |
| 28 |
} |
| 29 |
|