function features_access in Features 6
Implemenation of hook_access()
File
- ./
features.module, line 223 - 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_access($op, $node, $account) {
return node_content_access($op, $node, $account);
}