function uc_cart_links_perm in Ubercart 6.2
Same name and namespace in other branches
- 5 uc_cart_links/uc_cart_links.module \uc_cart_links_perm()
Implements hook_perm().
File
- uc_cart_links/
uc_cart_links.module, line 58 - Allows store owners to create links to add products to carts and send customers on to checkout.
Code
function uc_cart_links_perm() {
return array(
'administer cart links',
'view cart links report',
);
}