function shortcut_admin_paths

7.x shortcut.module shortcut_admin_paths()

Implements hook_admin_paths().

File

drupal-7.x/modules/shortcut/shortcut.module, line 167
Allows users to manage customizable lists of shortcut links.

Code

function shortcut_admin_paths() {
  $paths = array(
    'user/*/shortcuts' => TRUE,
  );
  return $paths;
}