public function TokenAuthUser::hasLinkTemplate in Simple OAuth (OAuth2) & OpenID Connect 8.3
Same name and namespace in other branches
- 8.4 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::hasLinkTemplate()
- 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::hasLinkTemplate()
- 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::hasLinkTemplate()
- 5.x src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::hasLinkTemplate()
Indicates if a link template exists for a given key.
Parameters
string $key: The link type.
Return value
bool TRUE if the link template exists, FALSE otherwise.
Overrides EntityInterface::hasLinkTemplate
File
- src/
Authentication/ TokenAuthUser.php, line 335
Class
- TokenAuthUser
- The decorated user class with token information.
Namespace
Drupal\simple_oauth\AuthenticationCode
public function hasLinkTemplate($key) {
return $this->subject
->hasLinkTemplate($key);
}