Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
0 / 0
100.00% covered (success)
100.00%
0 / 0
CRAP
57.14% covered (warning)
57.14%
4 / 7
ctools_wizard_theme
100.00% covered (success)
100.00%
1 / 1
0
100.00% covered (success)
100.00%
4 / 4
theme_ctools_wizard_trail
0.00% covered (danger)
0.00%
0 / 1
0
0.00% covered (danger)
0.00%
0 / 3
<?php
/**
 * @file
 * Themable for the wizard tool.
 */
function ctools_wizard_theme(&$theme) {
  $theme['ctools_wizard_trail'] = array(
    'variables' => array('trail' => NULL, 'form_info' => NULL, 'divider' => ' ยป '),
    'file' => 'includes/wizard.theme.inc',
  );
}
/**
 * Themable display of the 'breadcrumb' trail to show the order of the forms.
 */
function theme_ctools_wizard_trail($vars) {
  if (!empty($vars['trail'])) {
    return '<div class="wizard-trail">' . implode($vars['divider'], $vars['trail']) . '</div>';
  }
}