shortcut_set_title

Versions
mediamosa-21
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().

Code

modules/shortcut/shortcut.module, line 723

<?php
function shortcut_set_title($shortcut_set) {
  return check_plain($shortcut_set->title);
}
?>