You are here

function commerce_repeat_order_permission in Commerce Repeat Order 7

Implements hook_permission().

File

./commerce_repeat_order.module, line 35
Allows users to create a new order from their order history.

Code

function commerce_repeat_order_permission() {
  return array(
    'commerce repeat order access' => array(
      'title' => t('Commerce Repeat Order'),
      'description' => t('Access for order to be repeated by customer'),
    ),
  );
}