function ctools_theme
Same name in other branches
- 7.x-1.x ctools.module \ctools_theme()
- 8.x-3.x ctools.module \ctools_theme()
Implements hook_theme().
Parameters
$existing:
$type:
$theme:
$path:
Return value
\array[][]
File
-
./
ctools.module, line 24
Code
function ctools_theme($existing, $type, $theme, $path) {
return [
'ctools_wizard_trail' => [
'variables' => [
'wizard' => NULL,
'cached_values' => [],
'trail' => [],
'divider' => ' » ',
'step' => NULL,
],
],
'ctools_wizard_trail_links' => [
'variables' => [
'wizard' => NULL,
'cached_values' => [],
'trail' => [],
'divider' => ' » ',
'step' => NULL,
],
],
];
}