shortcut_set_assign_user($shortcut_set, $account)
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
1 2 3 4 5 | function shortcut_set_assign_user( $shortcut_set , $account ) { \Drupal::entityManager() ->getStorage( 'shortcut_set' ) ->assignUser( $shortcut_set , $account ); } |
Please login to continue.