You are here

function workflow_theme in Workflow 8

Same name and namespace in other branches
  1. 6.2 workflow.module \workflow_theme()
  2. 6 workflow.module \workflow_theme()
  3. 7.2 workflow.module \workflow_theme()
  4. 7 workflow.module \workflow_theme()

Implements hook_theme().

File

./workflow.module, line 265
Support workflows made up of arbitrary states.

Code

function workflow_theme() {
  return [
    'workflow_transition' => [
      'render element' => 'elements',
      'file' => 'workflow.theme.inc',
    ],
  ];
}