You are here

function commerce_reorder_permission in Commerce Reorder 7

Same name and namespace in other branches
  1. 7.2 commerce_reorder.module \commerce_reorder_permission()

Implementation of hook_permission().

File

./commerce_reorder.module, line 31
Allows users to create a new order from their order history.

Code

function commerce_reorder_permission() {
  return array(
    'commerce_reorder_access' => array(
      'title' => t('Reorder a previous order'),
      'description' => t('Add contents of an order to a new cart.'),
    ),
  );
}