function theme_ctools_wizard_trail in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 includes/wizard.theme.inc \theme_ctools_wizard_trail()
Themable display of the 'breadcrumb' trail to show the order of the forms.
1 theme call to theme_ctools_wizard_trail()
- ctools_wizard_wrapper in includes/
wizard.inc - Provide a wrapper around another form for adding multi-step information.
File
- includes/
wizard.theme.inc, line 19 - Themable for the wizard tool.
Code
function theme_ctools_wizard_trail($trail) {
if (!empty($trail)) {
return '<div class="wizard-trail">' . implode(' » ', $trail) . '</div>';
}
}