function asset_wizard_format_options in Asset 6
Same name and namespace in other branches
- 5.2 asset_wizard.module \asset_wizard_format_options()
Step 3: Display the options form
1 string reference to 'asset_wizard_format_options'
- asset_wizard_menu in ./
asset_wizard.module - Implementation of hook_menu().
File
- ./
asset_wizard.module, line 472 - 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);
}