Same name and namespace in other branches
  1. 10 core/modules/node/node.module \node_access
  2. 4.6.x modules/node.module \node_access
  3. 5.x modules/node/node.module \node_access
  4. 6.x modules/node/node.module \node_access
  5. 7.x modules/node/node.module \node_access
  6. 8.9.x core/modules/node/node.module \node_access
  7. 9 core/modules/node/node.module \node_access

The node access system determines who can do what to which nodes.

In determining access rights for a node, node_access() first checks whether the user has the "administer nodes" permission. Such users have unrestricted access to all nodes. Then the node module's hook_access() is called, and a TRUE or FALSE return value will grant or deny access. This allows, for example, the blog module to always grant access to the blog author, and for the book module to always deny editing access to PHP pages.

If node module does not intervene (returns NULL), then the node_access table is used to determine access. All node access modules are queried using hook_node_grants() to assemble a list of "grant IDs" for the user. This list is compared against the table. If any row contains the node ID in question (or 0, which stands for "all nodes"), one of the grant IDs returned, and a value of TRUE for the operation in question, then access is granted. Note that this table is a list of grants; any matching row is sufficient to grant access to the node.

In node listings, the process above is followed except that hook_access() is not called on each node for performance reasons and for proper functioning of the pager system. When adding a node listing to your module, be sure to use db_rewrite_sql() to add the appropriate clauses to your query for access checks.

To see how to write a node access module of your own, see node_access_example.module.

File

modules/node.module, line 2323
The core that allows content to be submitted to the site.

Functions

Namesort descending Location Description
hook_access developer/hooks/node.php Define access restrictions.
node_access modules/node.module Determine whether the current user may perform the given operation on the specified node.
node_access_grants modules/node.module Fetch an array of permission IDs granted to the given user ID.
node_access_view_all_nodes modules/node.module Determine whether the user has a global viewing grant for all nodes.
node_db_rewrite_sql modules/node.module Implementation of hook_db_rewrite_sql
_node_access_join_sql modules/node.module Generate an SQL join clause for use in fetching a node listing.
_node_access_where_sql modules/node.module Generate an SQL where clause for use in fetching a node listing.