function features_node_access in Features 7
Implemenation of hook_node_access()
File
- ./
features.module, line 247 - Module file for the features module, which enables the capture and management of features in Drupal. A feature is a collection of Drupal entities which taken together statisfy a certain use-case.
Code
function features_node_access($node, $op, $account) {
return node_node_access($node, $op, $account);
}