function devel_node_access_perm in Devel 5
Same name and namespace in other branches
- 6 devel_node_access.module \devel_node_access_perm()
1 string reference to 'devel_node_access_perm'
- devel_block in ./
devel.module - Implementation of hook_block().
File
- ./
devel_node_access.module, line 13 - This module gives developers feedback as to what their node_access table contains, and which nodes are protected or visible to the public.
Code
function devel_node_access_perm() {
return array(
DNA_ACCESS_VIEW,
);
}