wizard.theme.inc 502 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @file
  4. * Themable for the wizard tool.
  5. */
  6. function ctools_wizard_theme(&$theme) {
  7. $theme['ctools_wizard_trail'] = array(
  8. 'variables' => array('trail' => NULL),
  9. 'file' => 'includes/wizard.theme.inc',
  10. );
  11. }
  12. /**
  13. * Themable display of the 'breadcrumb' trail to show the order of the
  14. * forms.
  15. */
  16. function theme_ctools_wizard_trail($vars) {
  17. $trail = $vars['trail'];
  18. if (!empty($trail)) {
  19. return '<div class="wizard-trail">' . implode(' » ', $trail) . '</div>';
  20. }
  21. }