1 entity_example.module entity_example_basic_title($entity)

Callback for a page title when this entity is displayed.

Related topics

File

modules/examples/entity_example/entity_example.module, line 296
Hook implementations for the Entity Example module.

Code

function entity_example_basic_title($entity) {
  return t('Entity Example Basic (item_description=@item_description)', array('@item_description' => $entity->item_description));
}