'textfield',
'#title' => t('USPS user ID'),
'#description' => t('To acquire or locate your user ID, refer to the USPS documentation.', array('!url' => 'http://www.ubercart.org/docs/user/14054/us_postal_service')),
'#default_value' => variable_get('uc_usps_user_id', ''),
);
$form['domestic'] = array(
'#type' => 'fieldset',
'#title' => t('USPS Domestic'),
'#description' => l(t('Set the conditions that will return a USPS quote.'), CA_UI_PATH .'/uc_usps_get_quote/edit/conditions'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['domestic']['uc_usps_online_rates'] = array(
'#type' => 'checkbox',
'#title' => t('Display USPS "online" rates'),
'#default_value' => variable_get('uc_usps_online_rates', FALSE),
'#description' => t('Show your customer standard USPS rates (default) or discounted "online" rates. Online rates apply only if you, the merchant, pay for and print out postage from the USPS Click-N-Ship web site.'),
);
$form['domestic']['uc_usps_env_services'] = array(
'#type' => 'checkboxes',
'#title' => t('USPS envelope services'),
'#default_value' => variable_get('uc_usps_env_services', array_keys(_uc_usps_env_services())),
'#options' => _uc_usps_env_services(),
'#description' => t('Select the USPS services that are available to customers. Be sure to include the services that the Postal Service agrees are available to you.'),
);
$form['domestic']['uc_usps_services'] = array(
'#type' => 'checkboxes',
'#title' => t('USPS parcel services'),
'#default_value' => variable_get('uc_usps_services', array_keys(_uc_usps_services())),
'#options' => _uc_usps_services(),
'#description' => t('Select the USPS services that are available to customers. Be sure to include the services that the Postal Service agrees are available to you.'),
);
$form['international'] = array(
'#type' => 'fieldset',
'#title' => t('USPS International'),
'#description' => l(t('Set the conditions that will return a USPS International quote.'), CA_UI_PATH .'/uc_usps_get_intl_quote/edit/conditions'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['international']['uc_usps_intl_env_services'] = array(
'#type' => 'checkboxes',
'#title' => t('USPS international envelope services'),
'#default_value' => variable_get('uc_usps_intl_env_services', array_keys(_uc_usps_intl_env_services())),
'#options' => _uc_usps_intl_env_services(),
'#description' => t('Select the USPS services that are available to customers. Be sure to include the services that the Postal Service agrees are available to you.'),
);
$form['international']['uc_usps_intl_services'] = array(
'#type' => 'checkboxes',
'#title' => t('USPS international parcel services'),
'#default_value' => variable_get('uc_usps_intl_services', array_keys(_uc_usps_intl_services())),
'#options' => _uc_usps_intl_services(),
'#description' => t('Select the USPS services that are available to customers. Be sure to include the services that the Postal Service agrees are available to you.'),
);
$form['uc_usps_markup_type'] = array(
'#type' => 'select',
'#title' => t('Markup type'),
'#default_value' => variable_get('uc_usps_markup_type', 'percentage'),
'#options' => array(
'percentage' => t('Percentage (%)'),
'multiplier' => t('Multiplier (×)'),
'currency' => t('Addition (!currency)', array('!currency' => variable_get('uc_currency_sign', '$'))),
),
);
$form['uc_usps_markup'] = array(
'#type' => 'textfield',
'#title' => t('Shipping rate markup'),
'#default_value' => variable_get('uc_usps_markup', '0'),
'#description' => t('Markup shipping rate quote by dollar amount, percentage, or multiplier.'),
);
$form['uc_usps_all_in_one'] = array(
'#type' => 'radios',
'#title' => t('Product packages'),
'#default_value' => variable_get('uc_usps_all_in_one', 1),
'#options' => array(
0 => t('Each in its own package'),
1 => t('All in one'),
),
'#description' => t('Indicate whether each product is quoted as shipping separately or all in one package. Orders with one kind of product will still use the package quantity to determine the number of packages needed, however.'),
);
return system_settings_form($form);
}
/**
* Validation handler for uc_usps_admin_settings form.
*/
function uc_usps_admin_settings_validate($form, &$form_state) {
if (!is_numeric($form_state['values']['uc_usps_markup'])) {
form_set_error('uc_usps_markup', t('Rate markup must be a numeric value.'));
}
}