You are here

function commerce_pricelist_list_title in Commerce Pricelist 7

Callback for a page title when this entity is displayed.

1 string reference to 'commerce_pricelist_list_title'
commerce_pricelist_menu in ./commerce_pricelist.module
Implements hook_menu().

File

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

Code

function commerce_pricelist_list_title($entity) {
  return t('@item_title', array(
    '@item_title' => $entity->title,
  ));
}