You are here

function commerce_popup_cart_permission in Commerce Popup Cart 7

Implementation of hook_permission

File

./commerce_popup_cart.module, line 20

Code

function commerce_popup_cart_permission() {
  return array(
    'administer popup cart' => array(
      'title' => t('Administer the Commerce Popup Cart'),
      'description' => t('Perform administration tasks for the Commerce Popup Cart module..'),
    ),
  );
}