You are here

function uc_cart_block_edit_info in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_cart/uc_cart.module \uc_cart_block_edit_info()

Helpful message redirecting users to the block settings.

1 string reference to 'uc_cart_block_edit_info'
uc_cart_menu in uc_cart/uc_cart.module
Implements hook_menu().

File

uc_cart/uc_cart.admin.inc, line 259
Cart administration menu items.

Code

function uc_cart_block_edit_info() {
  $output = t('Drupal handles all the block settings forms automatically.') . '<p>' . t('<a href="!url">Click here</a> to go to the shopping cart block configuration page.', array(
    '!url' => url('admin/build/block/configure/uc_cart/0'),
  ));
  return $output;
}