You are here

function devel_node_access_theme in Devel 6

Same name and namespace in other branches
  1. 7 devel_node_access.module \devel_node_access_theme()

Implementation of hook_theme().

File

./devel_node_access.module, line 799
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_theme() {
  return array(
    'dna_permission' => array(
      'arguments' => array(
        'permission' => NULL,
      ),
    ),
  );
}