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