You are here

function pet_uri in Previewable email templates 7

Same name and namespace in other branches
  1. 8.4 pet.module \pet_uri()
  2. 8 pet.module \pet_uri()

Entity uri callback.

1 string reference to 'pet_uri'
pet_entity_info in ./pet.module
Implements hook_entity_info().

File

./pet.module, line 258
Previewable Email Template module.

Code

function pet_uri($pet) {
  return array(
    'path' => 'pet/' . $pet->name,
  );
}