Neos\Flow\Security\Account::getAuthenticationProviderName PHP Méthode

getAuthenticationProviderName() public méthode

Returns the authentication provider name this account corresponds to
public getAuthenticationProviderName ( ) : string
Résultat string The authentication provider name
    public function getAuthenticationProviderName()
    {
        return $this->authenticationProviderName;
    }

Usage Example

 /**
  * Edit the given account
  *
  * @param Account $account
  * @return void
  */
 public function editAccountAction(Account $account)
 {
     $this->view->assignMultiple(array('account' => $account, 'user' => $this->userService->getUser($account->getAccountIdentifier(), $account->getAuthenticationProviderName())));
 }
All Usage Examples Of Neos\Flow\Security\Account::getAuthenticationProviderName