uc_order_form_uc_store_settings_form_alter

  1. drupal
    1. 7 uc_order.module function
Drupal 7 uc_order_form_uc_store_settings_form_alter(&$form, &$form_state)

Implements hook_form_FORM_ID_alter() for uc_store_settings_form().

File

sites/all/modules/ubercart/uc_order/uc_order.module, line 630
Handles all things concerning Ubercart orders.

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),
  );
}