function pmexpense_node_access in Drupal PM (Project Management) 7
Implements hook_node_access().
File
- pmexpense/
pmexpense.module, line 77 - Hook implementations and main functions for PM Expense.
Code
function pmexpense_node_access($node, $op, $account = NULL) {
$type = is_string($node) ? $node : $node->type;
if ($type == 'pmexpense') {
// If no account is specified, assume that the check is against the current logged in user
if (is_null($account)) {
global $user;
$account = $user;
}
if ($op == 'create' and user_access('Project Management expense: add', $account)) {
return NODE_ACCESS_ALLOW;
}
}
return NODE_ACCESS_IGNORE;
}