You are here

public function ShortcutSetStorage::countAssignedUsers in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/shortcut/src/ShortcutSetStorage.php \Drupal\shortcut\ShortcutSetStorage::countAssignedUsers()

Get the number of users who have this set assigned to them.

Parameters

\Drupal\shortcut\ShortcutSetInterface $shortcut_set: The shortcut to count the users assigned to.

Return value

int The number of users who have this set assigned to them.

Overrides ShortcutSetStorageInterface::countAssignedUsers

File

core/modules/shortcut/src/ShortcutSetStorage.php, line 109
Contains \Drupal\shortcut\ShortcutSetStorage.

Class

ShortcutSetStorage
Defines a storage for shortcut_set entities.

Namespace

Drupal\shortcut

Code

public function countAssignedUsers(ShortcutSetInterface $shortcut_set) {
  return db_query('SELECT COUNT(*) FROM {shortcut_set_users} WHERE set_name = :name', array(
    ':name' => $shortcut_set
      ->id(),
  ))
    ->fetchField();
}