with_callback.php 853 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php namespace System\Validation\Rules;
  2. use System\Validation\Rule;
  3. class With_Callback extends Rule {
  4. /**
  5. * The callback.
  6. *
  7. * @var function
  8. */
  9. public $callback;
  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. if ( ! is_callable($this->callback))
  24. {
  25. throw new \Exception("A validation callback for the [$attribute] attribute is not callable.");
  26. }
  27. return call_user_func($this->callback, $attributes[$attribute]);
  28. }
  29. /**
  30. * Set the validation callback.
  31. *
  32. * @param function $callback
  33. * @return With_Callback
  34. */
  35. public function using($callback)
  36. {
  37. $this->callback = $callback;
  38. return $this;
  39. }
  40. }