PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.15.2
GiveWP – Donation Plugin and Fundraising Platform v4.15.2
4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 2.31.0 2.31.1 All 253 releases
give / src / DonationForms / Rules / PhoneIntlInputRule.php
PhoneIntlInputRule.php
52 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Give\DonationForms\Rules;
4
5 use Closure;
6 use Give\Helpers\IntlTelInput;
7 use Give\Vendors\StellarWP\Validation\Contracts\ValidationRule;
8
9 /**
10 * @since 3.9.0
11 */
12 class PhoneIntlInputRule implements ValidationRule
13 {
14 /**
15 * @since 3.9.0
16 */
17 public static function id(): string
18 {
19 return 'intl-input';
20 }
21
22 /**
23 * @since 3.9.0
24 */
25 public static function fromString(string $options = null): ValidationRule
26 {
27 return new self();
28 }
29
30 /**
31 * It handles the possible error codes returned by the getValidationError() intl function.
32 *
33 * 0|4 = Invalid number
34 * 1 = Invalid country code
35 * 2 = Too short
36 * 3 = Too long
37 *
38 * @see https://intl-tel-input.com/examples/validation.html
39 *
40 * @since 3.9.0
41 */
42 public function __invoke($value, Closure $fail, string $key, array $values)
43 {
44 $errorMap = IntlTelInput::getErrorMap();
45
46 if ($value && 1 === strlen($value) && array_key_exists(absint($value), $errorMap)) {
47 $errorCode = absint($value) ?? 0;
48 $fail($errorMap[$errorCode]);
49 }
50 }
51 }
52