You are here

function commerce_stock_permission in Commerce Stock 7

Same name and namespace in other branches
  1. 7.2 commerce_stock.module \commerce_stock_permission()

Implements hook_permission().

File

./commerce_stock.module, line 33
Allow commerce products to have stock levels associated with their SKU

Code

function commerce_stock_permission() {
  return array(
    'administer commerce_stock settings' => array(
      'title' => t('Administer commerce stock settings'),
    ),
  );
}