You are here

function uc_weightquote_admin_method_edit_form in Ubercart 7.3

Same name and namespace in other branches
  1. 5 shipping/uc_weightquote/uc_weightquote.module \uc_weightquote_admin_method_edit_form()
  2. 6.2 shipping/uc_weightquote/uc_weightquote.admin.inc \uc_weightquote_admin_method_edit_form()

Configures the store default product shipping rates.

See also

uc_weightquote_admin_method_edit_form_submit()

uc_weightquote_admin_method_edit_form_delete()

1 string reference to 'uc_weightquote_admin_method_edit_form'
uc_weightquote_menu in shipping/uc_weightquote/uc_weightquote.module
Implements hook_menu().

File

shipping/uc_weightquote/uc_weightquote.admin.inc, line 15
Weight quote shipping method administration menu items.

Code

function uc_weightquote_admin_method_edit_form($form, &$form_state, $mid = 0) {
  if ($mid && ($method = db_query("SELECT * FROM {uc_weightquote_methods} WHERE mid = :mid", array(
    ':mid' => $mid,
  ))
    ->fetchObject())) {
    $form['mid'] = array(
      '#type' => 'value',
      '#value' => $mid,
    );
  }
  else {
    $method = (object) array(
      'title' => '',
      'label' => '',
      'base_rate' => '',
      'product_rate' => '',
    );
  }
  $form['title'] = array(
    '#type' => 'textfield',
    '#title' => t('Shipping method title'),
    '#description' => t('The name shown to administrators distinguish this method from other weightquote methods.'),
    '#default_value' => $method->title,
    '#required' => TRUE,
  );
  $form['label'] = array(
    '#type' => 'textfield',
    '#title' => t('Line item label'),
    '#description' => t('The name shown to the customer when they choose a shipping method at checkout.'),
    '#default_value' => $method->label,
    '#required' => TRUE,
  );
  $form['base_rate'] = array(
    '#type' => 'uc_price',
    '#title' => t('Base price'),
    '#description' => t('The starting price for weight-based shipping costs.'),
    '#default_value' => $method->base_rate,
    '#required' => TRUE,
  );
  $form['product_rate'] = array(
    '#type' => 'uc_price',
    '#title' => t('Default cost adjustment per !unit', array(
      '!unit' => variable_get('uc_weight_unit', 'lb'),
    )),
    '#description' => t('The amount per weight unit to add to the shipping cost for an item.'),
    '#default_value' => $method->product_rate,
    '#required' => TRUE,
    '#field_suffix' => t('per @unit', array(
      '@unit' => variable_get('uc_weight_unit', 'lb'),
    )),
  );
  $form['actions'] = array(
    '#type' => 'actions',
  );
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Submit'),
  );
  if (isset($form['mid'])) {
    $form['actions']['delete'] = array(
      '#type' => 'submit',
      '#value' => t('Delete'),
      '#validate' => array(),
      '#submit' => array(
        'uc_weightquote_admin_method_edit_form_delete',
      ),
    );
  }
  return $form;
}