You are here

function uc_ajax_cart_block_configure in Ubercart AJAX Cart 7.2

Implements hook_block_configure().

File

./uc_ajax_cart.module, line 385

Code

function uc_ajax_cart_block_configure($delta) {
  if (TRUE) {
    $form['text'] = array(
      '#title' => t('Ajax cart settings'),
      '#type' => 'fieldset',
      '#description' => t('Advanced settings for ajax cart are !here', array(
        '!here' => l(t('here'), 'admin/store/settings/uc_ajax_cart'),
      )),
    );
    return $form;
  }
}