function asset_wizard_help in Asset 6
Same name and namespace in other branches
- 5.2 asset_wizard.module \asset_wizard_help()
File
- ./
asset_wizard.module, line 793 - Wizard-style interface for Asset.
Code
function asset_wizard_help($section) {
$aid = arg(2);
switch ($section) {
case 'asset/wizard':
return '<p>' . t('The asset wizard allows you to create and select digital assets to use in the context of this site. To get started, select a method for choosing the appropriate asset.') . '</p>';
case 'asset/wizard/' . $aid . '/finish':
return '<p>' . t('Here is the preview of your formatted asset. You can click any of the links in the sidebar to make changes, or click Finish to insert this into the document.') . '</p>';
case 'asset/wizard/browse':
return '<p>' . t('Select the asset you wish to use.') . '</p>';
case 'asset/wizard/' . $aid:
return '<p>' . t('Select from the list of available formats.') . '</p>';
}
}