shortcut_set_title

7 shortcut.module shortcut_set_title($shortcut_set)
8 shortcut.module shortcut_set_title($shortcut_set)

Returns the title of a shortcut set.

Title callback for the editing pages for shortcut sets.

Parameters

$shortcut_set: An object representing the shortcut set, as returned by shortcut_set_load().

1 string reference to 'shortcut_set_title'

File

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

Code

function shortcut_set_title($shortcut_set) {
  return check_plain($shortcut_set->title);
}
Login or register to post comments