function theme_asset_form_buttons in Asset 5.2
Allow asset_wizard a chance to theme the buttons.
Related topics
2 theme calls to theme_asset_form_buttons()
- asset_form in ./
asset.module - Generate the asset add/edit form array.
- asset_search_wizard_preview_form in contrib/
asset_search/ asset_search.module
File
- ./
asset.module, line 497 - Main module.
Code
function theme_asset_form_buttons($form) {
if (arg(1) == 'wizard' && module_exists('asset_wizard')) {
return theme('asset_wizard_form_buttons', $form);
}
return drupal_render($form);
}