You are here

function entityform_save in Entityform 7

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

Saves a entityform to the database.

Parameters

$entityform: The entityform object.

File

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

Code

function entityform_save(Entityform $entityform) {
  return $entityform
    ->save();
}