confirmation_of.php 517 B

12345678910111213141516171819202122232425
  1. <?php namespace System\Validation\Rules;
  2. use System\Input;
  3. use System\Validation\Rule;
  4. class Confirmation_Of extends Rule {
  5. /**
  6. * Evaluate the validity of an attribute.
  7. *
  8. * @param string $attribute
  9. * @param array $attributes
  10. * @return void
  11. */
  12. public function check($attribute, $attributes)
  13. {
  14. if ( ! array_key_exists($attribute, $attributes))
  15. {
  16. return true;
  17. }
  18. return Input::has($attribute.'_confirmation') and $attributes[$attribute] === Input::get($attribute.'_confirmation');
  19. }
  20. }