function party_uri in Party 7
Same name and namespace in other branches
- 8.2 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 922 - Provides a generic CRM party entity.
Code
function party_uri($party) {
return array(
'path' => 'party/' . $party->pid,
);
}