You are here

function asset_wizard_format_options in Asset 5.2

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

Step 3: Display the options form

Related topics

1 string reference to 'asset_wizard_format_options'
asset_wizard_menu in ./asset_wizard.module
Implementation of hook_menu().

File

./asset_wizard.module, line 471
Wizard-style interface for Asset.

Code

function asset_wizard_format_options($asset, $attr) {
  $content = '<h3>' . ${$attr}['format'] . '</h3>';
  $content .= drupal_get_form('asset_wizard_format_options_form', $asset, $attr);
  return theme('asset_wizard_page', $content);
}