You are here

function asset_wizard_methods in Asset 6

Same name and namespace in other branches
  1. 5.2 asset_wizard.module \asset_wizard_methods()
2 calls to asset_wizard_methods()
asset_wizard_main in ./asset_wizard.module
asset_wizard_menu in ./asset_wizard.module
Implementation of hook_menu().

File

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

Code

function asset_wizard_methods() {
  static $methods;
  if (!isset($methods)) {
    $methods['browse'] = array(
      'name' => t('Browse'),
      'callback' => 'asset_wizard_browse',
      'description' => t('Choose from a list of existing assets.'),
    );
    $methods = $methods + module_invoke_all('asset_wizard', 'info');
  }
  return $methods;
}