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
In.php
77 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Vendors\StellarWP\Validation\Rules; |
| 4 | |
| 5 | use Closure; |
| 6 | use Give\Vendors\StellarWP\Validation\Config; |
| 7 | use Give\Vendors\StellarWP\Validation\Contracts\ValidatesOnFrontEnd; |
| 8 | use Give\Vendors\StellarWP\Validation\Contracts\ValidationRule; |
| 9 | |
| 10 | class In implements ValidationRule, ValidatesOnFrontEnd |
| 11 | { |
| 12 | /** |
| 13 | * @var array<mixed> |
| 14 | */ |
| 15 | protected array $acceptedValues; |
| 16 | |
| 17 | /** |
| 18 | * @since 1.2.0 |
| 19 | */ |
| 20 | public static function id(): string |
| 21 | { |
| 22 | return 'in'; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * @since 1.2.0 |
| 27 | * |
| 28 | * @param mixed ...$acceptedValues |
| 29 | */ |
| 30 | final public function __construct(...$acceptedValues) |
| 31 | { |
| 32 | if (empty($acceptedValues)) { |
| 33 | Config::throwInvalidArgumentException('The In rule requires at least one value to be specified.'); |
| 34 | } |
| 35 | |
| 36 | $this->acceptedValues = $acceptedValues; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * @since 1.2.0 |
| 41 | */ |
| 42 | public static function fromString(?string $options = null): ValidationRule |
| 43 | { |
| 44 | if (empty(trim($options))) { |
| 45 | Config::throwInvalidArgumentException('The In rule requires at least one value to be specified.'); |
| 46 | } |
| 47 | |
| 48 | $values = explode(',', $options); |
| 49 | |
| 50 | if (empty($values)) { |
| 51 | Config::throwInvalidArgumentException('The In rule requires at least one value to be specified.'); |
| 52 | } |
| 53 | |
| 54 | return new static(...$values); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * @since 1.2.0 |
| 59 | */ |
| 60 | public function __invoke($value, Closure $fail, string $key, array $values) |
| 61 | { |
| 62 | if (!in_array($value, $this->acceptedValues)) { |
| 63 | $fail(sprintf(__('%s must be one of %s', 'give'), '{field}', implode(', ', $this->acceptedValues))); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * @since 1.2.0 |
| 69 | * |
| 70 | * @return array<mixed> |
| 71 | */ |
| 72 | public function serializeOption(): array |
| 73 | { |
| 74 | return $this->acceptedValues; |
| 75 | } |
| 76 | } |
| 77 |