You are here

function commerce_node_checkout_permission in Commerce Node Checkout 7

Implements hook_permission().

File

./commerce_node_checkout.module, line 20
Provides core hooks and the like for the module

Code

function commerce_node_checkout_permission() {
  return array(
    'administer commerce node checkout' => array(
      'title' => t('Administer Commerce Node'),
      'description' => t('Perform administration tasks for Commerce Node Checkout.'),
    ),
  );
}