You are here

function workbench_moderation_theme in Workbench Moderation 7.3

Same name and namespace in other branches
  1. 8.2 workbench_moderation.module \workbench_moderation_theme()
  2. 8 workbench_moderation.module \workbench_moderation_theme()
  3. 7 workbench_moderation.module \workbench_moderation_theme()

Implements hook_theme().

File

./workbench_moderation.module, line 369
Content moderation for Workbench.

Code

function workbench_moderation_theme() {
  return array(
    'workbench_moderation_admin_states_form' => array(
      'file' => 'workbench_moderation.admin.inc',
      'render element' => 'form',
    ),
    'workbench_moderation_admin_transitions_form' => array(
      'file' => 'workbench_moderation.admin.inc',
      'render element' => 'form',
    ),
  );
}