You are here

function uc_cart_block_edit_info in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_cart/uc_cart.admin.inc \uc_cart_block_edit_info()
1 string reference to 'uc_cart_block_edit_info'
uc_cart_menu in uc_cart/uc_cart.module
Implementation of hook_menu().

File

uc_cart/uc_cart.module, line 659

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 goto the shopping cart block configuration page.', array(
    '!url' => url('admin/build/block/configure/uc_cart/0'),
  ));
  return $output;
}