userEmailExists() public method

public userEmailExists ( $userEmail )
コード例 #1
0
ファイル: API.php プロジェクト: FluentDevelopment/piwik
 /**
  * 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);
 }