You are here

function theme_asset_wizard_form_buttons in Asset 5.2

Same name and namespace in other branches
  1. 6 asset_wizard.module \theme_asset_wizard_form_buttons()

Related topics

4 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_form_buttons in ./asset.module
Allow asset_wizard a chance to theme the buttons.
theme_asset_wizard_preview in ./asset_wizard.module
Wizard Step 3: Display a preview

File

./asset_wizard.module, line 636
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>';
}