public function TokenAuthUser::isDefaultRevision 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::isDefaultRevision()
- 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::isDefaultRevision()
- 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::isDefaultRevision()
- 5.x src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::isDefaultRevision()
Checks if this entity is the default revision.
Parameters
bool $new_value: (optional) A Boolean to (re)set the isDefaultRevision flag.
Return value
bool TRUE if the entity is the default revision, FALSE otherwise. If $new_value was passed, the previous value is returned.
Overrides RevisionableInterface::isDefaultRevision
File
- src/
Authentication/ TokenAuthUser.php, line 650
Class
- TokenAuthUser
- The decorated user class with token information.
Namespace
Drupal\simple_oauth\AuthenticationCode
public function isDefaultRevision($new_value = NULL) {
return $this->subject
->isDefaultRevision($new_value);
}