You are here

function uc_order_form_uc_store_settings_form_alter in Ubercart 7.3

Implements hook_form_FORM_ID_alter() for uc_store_settings_form().

File

uc_order/uc_order.module, line 700

Code

function uc_order_form_uc_store_settings_form_alter(&$form, &$form_state) {
  $form['display']['uc_order_capitalize_addresses'] = array(
    '#type' => 'checkbox',
    '#title' => t('Capitalize address on order screens'),
    '#default_value' => variable_get('uc_order_capitalize_addresses', TRUE),
  );
}