function theme_asset_wizard_form_buttons in Asset 6
Same name and namespace in other branches
- 5.2 asset_wizard.module \theme_asset_wizard_form_buttons()
3 theme calls to theme_asset_wizard_form_buttons()
- asset_search_wizard_form in contrib/
asset_search/ asset_search.module - Asset Search Form
- asset_wizard_format_options_form in ./
asset_wizard.module - Form Builder for Step 3
- theme_asset_wizard_preview in ./
asset_wizard.module - Wizard Step 3: Display a preview
File
- ./
asset_wizard.module, line 638 - Wizard-style interface for Asset.
Code
function theme_asset_wizard_form_buttons($form) {
$output = is_array($form) ? drupal_render($form) : $form;
return '<div class="wizard-buttons">' . $output . '</div>';
}