function uc_quote_action_info in Ubercart 5
Implementation of hook_action_info().
File
- shipping/
uc_quote/ uc_quote.module, line 393 - The controller module for fulfillment modules that process physical goods.
Code
function uc_quote_action_info() {
return array(
'uc_quote_action_get_quote' => array(
'#label' => t('Fetch a shipping quote'),
'#arguments' => array(
'order' => array(
'#entity' => 'order',
'#label' => t('Order'),
),
'method' => array(
'#entity' => 'quote_method',
'#label' => t('Quote method'),
),
),
'#module' => t('Quote'),
),
);
}