You are here

function uc_cart_links_permission in Ubercart 7.3

Implements hook_permission().

File

uc_cart_links/uc_cart_links.module, line 62
Allows store owners to create links to add products to carts and send customers on to checkout.

Code

function uc_cart_links_permission() {
  return array(
    'administer cart links' => array(
      'title' => t('Administer cart links'),
    ),
    'view cart links report' => array(
      'title' => t('View cart links report'),
    ),
  );
}