You are here

function entityform_type_save in Entityform 7.2

Same name and namespace in other branches
  1. 7 entityform.module \entityform_type_save()

Saves a entityform type to the db.

1 call to entityform_type_save()
EntityformCRUDTestCase::updateEntityformType in ./entityform.test

File

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

Code

function entityform_type_save(EntityformType $type) {
  $type
    ->save();
}