Abstracts
1 year ago
Boolean.php
1 year ago
Currency.php
1 year ago
DateTime.php
1 year ago
Email.php
1 year ago
Exclude.php
1 year ago
ExcludeIf.php
1 year ago
ExcludeUnless.php
1 year ago
In.php
1 year ago
InStrict.php
1 year ago
Integer.php
1 year ago
Max.php
1 year ago
Min.php
1 year ago
Nullable.php
1 year ago
NullableIf.php
1 year ago
NullableUnless.php
1 year ago
Numeric.php
1 year ago
Optional.php
1 year ago
OptionalIf.php
1 year ago
OptionalUnless.php
1 year ago
Required.php
1 year ago
Size.php
1 year ago
Email.php
56 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Give\Vendors\StellarWP\Validation\Rules; |
| 6 | |
| 7 | use Closure; |
| 8 | use Give\Vendors\StellarWP\Validation\Contracts\ValidatesOnFrontEnd; |
| 9 | use Give\Vendors\StellarWP\Validation\Contracts\ValidationRule; |
| 10 | |
| 11 | /** |
| 12 | * @since 1.0.0 |
| 13 | */ |
| 14 | class Email implements ValidationRule, ValidatesOnFrontEnd |
| 15 | { |
| 16 | /** |
| 17 | * @inheritDoc |
| 18 | * |
| 19 | * @since 1.0.0 |
| 20 | */ |
| 21 | public static function id(): string |
| 22 | { |
| 23 | return 'email'; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * @inheritDoc |
| 28 | * |
| 29 | * @since 1.0.0 |
| 30 | */ |
| 31 | public static function fromString(?string $options = null): ValidationRule |
| 32 | { |
| 33 | return new self(); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * @inheritDoc |
| 38 | */ |
| 39 | public function serializeOption() |
| 40 | { |
| 41 | return null; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * @inheritDoc |
| 46 | * |
| 47 | * @since 1.0.0 |
| 48 | */ |
| 49 | public function __invoke($value, Closure $fail, string $key, array $values) |
| 50 | { |
| 51 | if (!is_string($value) || !filter_var($value, FILTER_VALIDATE_EMAIL)) { |
| 52 | $fail(sprintf(__('%s is not a valid email address', 'give'), '{field}')); |
| 53 | } |
| 54 | } |
| 55 | } |
| 56 |