You are here

function registration_type_delete in Entity Registration 8.2

Same name and namespace in other branches
  1. 8 registration.module \registration_type_delete()
  2. 7.2 registration.module \registration_type_delete()
  3. 7 registration.module \registration_type_delete()

Deletes a model type from the db.

File

./registration.module, line 2025

Code

function registration_type_delete(RegistrationType $type) {
  $type
    ->delete();
}