You are here

function commerce_backoffice_product_entity_info_alter in Commerce Backoffice 7

Implements hook_entity_info_alter().

File

./commerce_backoffice_product.module, line 133

Code

function commerce_backoffice_product_entity_info_alter(&$entity_info) {
  foreach ($entity_info['commerce_product']['bundles'] as $type => &$bundle) {
    $bundle['admin'] = array(
      'path' => 'admin/commerce/config/product-variation-types/' . strtr($type, '_', '-'),
      'access arguments' => array(
        'administer product types',
      ),
    );
  }
}