Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. ['country', 'validateCountry']
  2.  
  3. public function validateCountry($attribute, $params)
  4. {
  5. if (!in_array($this->$attribute, ['USA', 'Web'])) {
  6. $this->addError($attribute, 'The country must be either "USA" or "Web".');
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement