function theme_asset_wizard_page in Asset 6
Same name and namespace in other branches
- 5.2 asset_wizard.module \theme_asset_wizard_page()
9 theme calls to theme_asset_wizard_page()
- asset_search_wizard in contrib/
asset_search/ asset_search.module - Callback for asset/wizard/method/search
- asset_search_wizard_preview in contrib/
asset_search/ asset_search.module - asset_search_wizard_results in contrib/
asset_search/ asset_search.module - Menu callback for asset/wizard/method/search/<type>/<value>
- asset_wizard_add in ./
asset_wizard.module - asset_wizard_browse in ./
asset_wizard.module - Step 1: Display a browsable list of assets
File
- ./
asset_wizard.module, line 685 - Wizard-style interface for Asset.
Code
function theme_asset_wizard_page($content) {
$title = drupal_get_title();
asset_wizard_set_breadcrumb();
$breadcrumb = theme('breadcrumb', drupal_get_breadcrumb());
$messages = theme('status_messages');
$help = theme('help');
$links = theme('asset_wizard_links');
$selected = theme('asset_wizard_selected');
print <<<EOD
<div id="asset-wizard">
<h1>Asset Wizard</h1>
<div class="wizard-sidebar">
{<span class="php-variable">$links</span>}
{<span class="php-variable">$selected</span>}
</div>
<div class="wizard-main">
<h2>{<span class="php-variable">$title</span>}</h2>
<div class="wizard-content">
{<span class="php-variable">$messages</span>}
{<span class="php-variable">$help</span>}
{<span class="php-variable">$content</span>}
</div>
</div>
</div>
EOD;
exit;
}