function uc_shipping_perm in Ubercart 5
Same name and namespace in other branches
- 6.2 shipping/uc_shipping/uc_shipping.module \uc_shipping_perm()
Implementation of hook_perm().
File
- shipping/
uc_shipping/ uc_shipping.module, line 127 - Organizes ordered products into packages and sets them up for shipment. Shipping method modules may add functionality to generate shipping labels and tracking numbers.
Code
function uc_shipping_perm() {
return array(
'fulfill orders',
);
}