function forms_steps_theme in Forms Steps 8
Implements hook_theme().
Overrides the core html theme to use a custom template for form steps.
File
- ./
forms_steps.module, line 132 - Hook implementations for the forms_steps module.
Code
function forms_steps_theme() {
return [
'item_list__forms_steps' => [
'variables' => [
'items' => [],
'title' => '',
'list_type' => '',
'wrapper_attributes' => [],
'attributes' => [],
'empty' => '',
'context' => [],
],
'preprocess functions' => [
'template_preprocess_item_list',
],
],
];
}