You are here

function party_uri in Party 8.2

Same name and namespace in other branches
  1. 7 party.module \party_uri()

URI callback for contacts.

1 string reference to 'party_uri'
party_entity_info in ./party.module
Implements hook_entity_info().

File

./party.module, line 1097
Provides a generic CRM party entity.

Code

function party_uri($party) {
  return array(
    'path' => 'party/' . $party->pid,
  );
}