presence_of.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php namespace System\Validation\Rules;
  2. use System\Validation\Rule;
  3. class Presence_Of extends Rule {
  4. /**
  5. * Indicates an empty string should be considered present.
  6. *
  7. * @var bool
  8. */
  9. public $allow_empty = false;
  10. /**
  11. * Indicates a null should be considered present.
  12. *
  13. * @var bool
  14. */
  15. public $allow_null = false;
  16. /**
  17. * Evaluate the validity of an attribute.
  18. *
  19. * @param string $attribute
  20. * @param array $attributes
  21. * @return void
  22. */
  23. public function check($attribute, $attributes)
  24. {
  25. if ( ! array_key_exists($attribute, $attributes))
  26. {
  27. return false;
  28. }
  29. if (is_null($attributes[$attribute]) and ! $this->allow_null)
  30. {
  31. return false;
  32. }
  33. if (trim((string) $attributes[$attribute]) === '' and ! $this->allow_empty)
  34. {
  35. return false;
  36. }
  37. return true;
  38. }
  39. /**
  40. * Allow an empty string to be considered present.
  41. *
  42. * @return Presence_Of
  43. */
  44. public function allow_empty()
  45. {
  46. $this->allow_empty = true;
  47. return $this;
  48. }
  49. /**
  50. * Allow a null to be considered present.
  51. *
  52. * @return Presence_Of
  53. */
  54. public function allow_null()
  55. {
  56. $this->allow_null = true;
  57. return $this;
  58. }
  59. }