userEmailExists() public method

public userEmailExists ( $userEmail )
Exemplo n.º 1
0
 /**
  * Returns true if user with given email (userEmail) is known in the database, or the Super User
  *
  * @param string $userEmail
  * @return bool true if the user is known
  */
 public function userEmailExists($userEmail)
 {
     Piwik::checkUserIsNotAnonymous();
     return $this->model->userEmailExists($userEmail);
 }