| 7 shortcut.module | shortcut_set_title_exists($title) |
| 8 shortcut.module | shortcut_set_title_exists($title) |
Check to see if a shortcut set with the given title already exists.
Parameters
$title: Human-readable name of the shortcut set to check.
Return value
TRUE if a shortcut set with that title exists; FALSE otherwise.
3 calls to shortcut_set_title_exists()
File
- modules/
shortcut/ shortcut.module, line 599 - Allows users to manage customizable lists of shortcut links.
Code
function shortcut_set_title_exists($title) {
return (bool) db_query_range('SELECT 1 FROM {shortcut_set} WHERE title = :title', 0, 1, array(':title' => $title))->fetchField();
}
Login or register to post comments