function hook_party_data_set_detach in Party 7
Act when an entity is detached from a party.
Parameters
PartyDefaultDataSet $controller: The data set controller that the entity has been detached from.
Object $entity: The entity that has been detached from the party.
int $delta: The $delta the detached entity has been removed from.
See also
PartyDefaultDataSet::detachEntity()
PartyDefaultDataSet::detachEntityByDelta()
1 function implements hook_party_data_set_detach()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- party_log_party_data_set_detach in modules/
party_log/ party_log.party.inc - Implements hook_party_data_set_detach().
File
- ./
party.api.php, line 320 - Hooks provided by the Party module.
Code
function hook_party_data_set_detach($controller, $entity, $delta) {
// No example.
}