inclusion_of.php 731 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php namespace System\Validation\Rules;
  2. use System\Validation\Rule;
  3. class Inclusion_Of extends Rule {
  4. /**
  5. * The accepted values for the attribute.
  6. *
  7. * @var string
  8. */
  9. public $accepted;
  10. /**
  11. * Evaluate the validity of an attribute.
  12. *
  13. * @param string $attribute
  14. * @param array $attributes
  15. * @return void
  16. */
  17. public function check($attribute, $attributes)
  18. {
  19. if ( ! array_key_exists($attribute, $attributes))
  20. {
  21. return true;
  22. }
  23. return in_array($attributes[$attribute], $this->accepted);
  24. }
  25. /**
  26. * Set the accepted values for the attribute.
  27. *
  28. * @param array $accepted
  29. * @return Inclusion_Of
  30. */
  31. public function in($accepted)
  32. {
  33. $this->accepted = $accepted;
  34. return $this;
  35. }
  36. }