acceptance_of.php 686 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php namespace System\Validation\Rules;
  2. use System\Input;
  3. use System\Validation\Rule;
  4. class Acceptance_Of extends Rule {
  5. /**
  6. * The value is that is considered accepted.
  7. *
  8. * @var string
  9. */
  10. public $accepts = '1';
  11. /**
  12. * Evaluate the validity of an attribute.
  13. *
  14. * @param string $attribute
  15. * @param array $attributes
  16. * @return void
  17. */
  18. public function check($attribute, $attributes)
  19. {
  20. return Input::has($attribute) and (string) Input::get($attribute) === $this->accepts;
  21. }
  22. /**
  23. * Set the accepted value.
  24. *
  25. * @param string $value
  26. * @return Acceptance_Of
  27. */
  28. public function accepts($value)
  29. {
  30. $this->accepts = $value;
  31. return $this;
  32. }
  33. }