You are here

function theme_asset_wizard_selected in Asset 6

Same name and namespace in other branches
  1. 5.2 asset_wizard.module \theme_asset_wizard_selected()
1 theme call to theme_asset_wizard_selected()
theme_asset_wizard_page in ./asset_wizard.module

File

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

Code

function theme_asset_wizard_selected() {
  if (is_numeric(arg(2))) {
    $asset = asset_load(arg(2));
    $output = '<div class="wizard-selected"><h2>Selected Asset</h2>' . '<div class="content">' . theme('asset_icon', $asset) . '</div></div>';
    return $output;
  }
}