function uc_cart_links_perm in Ubercart 5
Same name and namespace in other branches
- 6.2 uc_cart_links/uc_cart_links.module \uc_cart_links_perm()
Implementation of hook_perm().
File
- uc_cart_links/
uc_cart_links.module, line 65 - 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',
);
}