You are here

function module_grants_theme in Module Grants 6

Implementation of hook_theme().

File

./module_grants.module, line 241
Module to enable access control for unpublished content. Also makes sure that modules that operate on access grants behave in the expected way when enabled together.

Code

function module_grants_theme() {
  return array(
    'module_grants_viewable_nodes' => array(
      'arguments' => array(),
    ),
    'module_grants_editable_nodes' => array(
      'arguments' => array(),
    ),
  );
}