You are here

function theme_webform_workflow_state in Webform Workflow 7

Theme a webform workflow state.

1 theme call to theme_webform_workflow_state()
webform_workflow_submission_state_form in includes/webform_workflow.forms.inc
Form for changing the state of an existing submission.

File

./webform_workflow.module, line 832
A simple workflow module for webforms.

Code

function theme_webform_workflow_state($variables) {
  return theme('webform_workflow_state_color', array(
    'content' => $variables['state']->label,
    'color' => $variables['state']->color,
    'classes_array' => array(
      'webform-workflow-state',
    ),
  ));
}