You are here

function commerce_stock_permission in Commerce Stock 7.2

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

Implements hook_permission().

File

./commerce_stock.module, line 48
Commerce Stock module.

Code

function commerce_stock_permission() {
  return array(
    'administer commerce_stock settings' => array(
      'title' => t('Administer commerce stock settings'),
    ),
    'make rule based changes to commerce_stock' => array(
      'title' => t('Make rule based changes to commerce stock'),
    ),
  );
}