You are here

function entityform_create in Entityform 7.2

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

Create a entityform object.

1 call to entityform_create()
entityform_empty_load in ./entityform.module
1 string reference to 'entityform_create'
entityform_entity_info in ./entityform.module
Implements hook_entity_info().

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_create($values = array()) {
  return entity_get_controller('entityform')
    ->create($values);
}