You are here

function commerce_permission in Commerce Core 7

Implements hook_permission().

File

./commerce.module, line 19
Defines features and functions common to the Commerce modules.

Code

function commerce_permission() {
  $permissions = array(
    'configure store' => array(
      'title' => t('Configure store settings'),
      'description' => t('Allows users to update store currency and contact settings.'),
      'restrict access' => TRUE,
    ),
  );
  return $permissions;
}