Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. 'facebookUm'=>array(
  2. 'rule'=>'checaFacebook',
  3. 'message' => 'Este não é um perfil válido!',
  4. 'required' => false,
  5. 'allowEmpty' => true
  6. )
  7.  
  8. public function checaFacebook($check)
  9. {
  10. if (stristr($check, 'facebook') != false){
  11. return true;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement