function UserHooks::templatePreprocessDefaultVariablesAlter

Implements hook_template_preprocess_default_variables_alter().

Attributes

#[Hook('template_preprocess_default_variables_alter')]

See also

user_user_login()

user_user_logout()

File

core/modules/user/src/Hook/UserHooks.php, line 214

Class

UserHooks
Hook implementations for user.

Namespace

Drupal\user\Hook

Code

public function templatePreprocessDefaultVariablesAlter(&$variables) : void {
  $user = \Drupal::currentUser();
  $variables['user'] = clone $user;
  // Remove password and session IDs, since themes should not need nor see
  // them.
  unset($variables['user']->pass, $variables['user']->sid, $variables['user']->ssid);
  $variables['is_admin'] = $user->hasPermission('access administration pages');
  $variables['logged_in'] = $user->isAuthenticated();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.