You are here

function commerce_pricelist_item_uri in Commerce Pricelist 7

Implements the uri callback.

1 string reference to 'commerce_pricelist_item_uri'
commerce_pricelist_entity_info in ./commerce_pricelist.module
Implements hook_entity_info().

File

./commerce_pricelist.module, line 795
Implements the basic functionality required for price lists

Code

function commerce_pricelist_item_uri($entity) {
  return array(
    'path' => 'admin/commerce/pricelist/commerce_pricelist/item/' . $entity->item_id,
  );
}