Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
devel_node_access_node_access_explain($row)
contributions/devel/devel_node_access.module, line 194
<?php
function devel_node_access_node_access_explain($row) {
if ($row->gid == 0 && $row->realm == 'all') {
if ($row->nid == 0) {
return 'All users may view all nodes.';
} else {
return 'All users may view this node.';
}
}
}
?>