You are here

function nodeaccess_grants in Nodeaccess 6.2

Same name and namespace in other branches
  1. 5 nodeaccess.module \nodeaccess_grants()
  2. 6 nodeaccess.module \nodeaccess_grants()

Menu callback. Draws the grant tab.

1 string reference to 'nodeaccess_grants'
nodeaccess_menu in ./nodeaccess.module
Implementation of hook_menu().

File

./nodeaccess.module, line 318

Code

function nodeaccess_grants($node) {
  drupal_set_title(check_plain($node->title));
  return drupal_get_form('nodeaccess_grants_form', $node);
}