You are here

function shortcut_set_assign_user in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/shortcut/shortcut.module \shortcut_set_assign_user()

Assigns a user to a particular shortcut set.

Parameters

$shortcut_set Drupal\shortcut\Entity\Shortcut: An object representing the shortcut set.

$account: A user account that will be assigned to use the set.

Deprecated

in Drupal 8.x, will be removed before Drupal 9.0. Use \Drupal::entityManager()->getStorage('shortcut_set')->assignUser().

File

core/modules/shortcut/shortcut.module, line 124
Allows users to manage customizable lists of shortcut links.

Code

function shortcut_set_assign_user($shortcut_set, $account) {
  \Drupal::entityManager()
    ->getStorage('shortcut_set')
    ->assignUser($shortcut_set, $account);
}