You are here

function commerce_pricelist_list_uri in Commerce Pricelist 7

Implements the uri callback.

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

File

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

Code

function commerce_pricelist_list_uri($entity) {
  return array(
    'path' => 'admin/commerce/pricelist/commerce_pricelist_list/' . $entity->list_id,
  );
}