Answers for "drupal 8 programmatically create user"

0

drupal 8 get user

$current_user = \Drupal::currentUser();
$user = \Drupal\user\Entity\User::load($current_user->id());

// or just
$user = \Drupal\user\Entity\User::load(\Drupal::currentUser()->id());
Posted by: Guest on October-04-2020

Browse Popular Code Answers by Language