Same name and namespace in other branches
  1. 8.9.x core/modules/shortcut/shortcut.module \shortcut_set_title_exists()

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.

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();
}