function NodeGrantDatabaseStorage::count
Counts available node grants.
Return value
int Returns the amount of node grants.
Overrides NodeGrantDatabaseStorageInterface::count
File
- 
              core/modules/ node/ src/ NodeGrantDatabaseStorage.php, line 291 
Class
- NodeGrantDatabaseStorage
- Defines a storage handler class that handles the node grants system.
Namespace
Drupal\nodeCode
public function count() {
  return $this->database
    ->query('SELECT COUNT(*) FROM {node_access}')
    ->fetchField();
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
