function theme_asset_wizard_selection_form in Asset 6
Same name in this branch
- 6 asset_wizard.inc \theme_asset_wizard_selection_form()
- 6 inc/asset_wizard.themes.inc \theme_asset_wizard_selection_form()
Same name and namespace in other branches
- 5 asset_wizard.inc \theme_asset_wizard_selection_form()
Theme function for the selection step of the wizard.
File
- ./
asset_wizard.inc, line 974
Code
function theme_asset_wizard_selection_form($form) {
// $output .= '<div class="toolbar">' . drupal_render($form['toolbar']) . '</div>';
$output .= '<div class="crumb-left"><div class="crumb-right">' . drupal_render($form['dir_crumb']) . '</div></div>';
$output .= '<div class="asset-tree-widget clear-block">' . drupal_render($form['folder_list']) . drupal_render($form['aid']) . drupal_render($form['asset_preview']) . '</div>';
$form[] = array(
'#value' => $output,
'#weight' => -10,
);
return theme('asset_wizard_form', $form, 'asset-selection-form');
}