You are here

function nodeaccess_theme in Nodeaccess 6.2

Same name and namespace in other branches
  1. 6 nodeaccess.module \nodeaccess_theme()
  2. 7 nodeaccess.module \nodeaccess_theme()

Implementation of hook_theme().

File

./nodeaccess.module, line 71

Code

function nodeaccess_theme($existing = NULL, $type = NULL, $theme = NULL, $path = NULL) {
  return array(
    'nodeaccess_admin_form_roles' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'nodeaccess_admin_form_types' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'nodeaccess_grants_form' => array(
      'arguments' => array(
        'form',
      ),
    ),
  );
}