You are here

function entityform_type_delete in Entityform 7

Same name and namespace in other branches
  1. 7.2 entityform.module \entityform_type_delete()

Deletes a entityform type from the db.

File

./entityform.module, line 620
Module for the Entityform Entity - a starting point to create your own Entity and associated administration interface

Code

function entityform_type_delete(EntityformType $type) {
  $type
    ->delete();
}