Пример #1
0
 /**
  * Determines whether a user exists or not
  * 
  * @param string $user_name user name
  * @return boolean 
  */
 public function exists($user_name)
 {
     return ca_users::exists($user_name);
 }
 /**
  * Determines whether a user exists or not
  * 
  * @param string $user_name user name
  * @return boolean 
  */
 public function exists($user_name)
 {
     $t_user = new ca_users();
     return $t_user->exists($user_name);
 }