You are here

function user_relationship_implications_user_relationships_type_delete in User Relationships 7

Implements hook_user_relationships_type_delete().

File

user_relationship_implications/user_relationship_implications.module, line 157
Drupal Module: User Relationship Implications

Code

function user_relationship_implications_user_relationships_type_delete($relationship_type) {
  db_delete('user_relationship_implications')
    ->condition(db_or()
    ->condition('rtid', $relationship_type->rtid)
    ->condition('implies_rtid', $relationship_type->rtid))
    ->execute();
}