You are here

function workflow_admin_ui_theme in Workflow 7

Same name and namespace in other branches
  1. 6.2 workflow_admin_ui/workflow_admin_ui.module \workflow_admin_ui_theme()
  2. 6 workflow_admin_ui/workflow_admin_ui.module \workflow_admin_ui_theme()
  3. 7.2 workflow_admin_ui/workflow_admin_ui.module \workflow_admin_ui_theme()

Implements hook_theme().

File

workflow_admin_ui/workflow_admin_ui.module, line 116
Provides administrative UI for workflow. Why it's own module? Lower code footprint and better performance. Additional credit to gcassie ( http://drupal.org/user/80260 ) for the initial push to split UI out of core workflow. We're moving…

Code

function workflow_admin_ui_theme() {
  return array(
    'workflow_admin_ui_transitions_form' => array(
      'render element' => 'form',
    ),
    'workflow_admin_ui_edit_form' => array(
      'render element' => 'form',
    ),
    'workflow_admin_ui_type_map_form' => array(
      'render element' => 'form',
    ),
    'workflow_admin_ui_overview_form' => array(
      'render element' => 'form',
    ),
  );
}