You are here

public function RedhenContact::deleteUser in RedHen CRM 7

Delete or unlink the active user for a contact.

Parameters

bool $delete: Flag if contact should unlinked or deleted.

Return value

bool Trust on success.

File

modules/redhen_contact/lib/redhen_contact.entity.inc, line 192
Redhen Contact entity classses.

Class

RedhenContact
The class used for contact entities.

Code

public function deleteUser($delete) {
  return entity_get_controller($this->entityType)
    ->deleteUser($this, $delete);
}