You are here

function uc_store_perm in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_store/uc_store.module \uc_store_perm()

Implements hook_perm().

File

uc_store/uc_store.module, line 525
Contains global Ubercart functions and store administration functionality.

Code

function uc_store_perm() {
  return array(
    'administer store',
    'view customers',
    'view store reports',
  );
}