PluginProbe
Blocks – Reusable Content, Shortcodes & Site Variables / trunk
Blocks – Reusable Content, Shortcodes & Site Variables vtrunk
26.09.03.15 26.08.31.21 26.08.22.20 26.08.22.22 26.08.22.17 26.08.22.13 26.08.21.19 26.08.07.23 26.07.19.14 26.07.13.21 26.07.13.17 26.07.12.13 026.07.07.21 026.07.05.18 026.06.26.20 026.06.26.21 026.06.08.20 026.05.13.14 026.04.29.10 trunk 026.02.22.22 026.03.16.23 026.04.23.13
blocks / src / Settings / SanitizerType.php

SanitizerType.php in Blocks – Reusable Content, Shortcodes & Site Variables trunk, at src/Settings/SanitizerType.php

29 lines 942 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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