public function InviteType::delete in Invite 7.4
Permanently deletes the entity.
Overrides Entity::delete
See also
File
- includes/
invite.controller.inc, line 309
Class
- InviteType
- Invite Type class.
Code
public function delete() {
parent::delete();
db_delete('invite_sending_controller')
->condition('type', $this->type)
->execute();
}