function entityform_create in Entityform 7
Same name and namespace in other branches
- 7.2 entityform.module \entityform_create()
Create a entityform object.
1 call to entityform_create()
1 string reference to 'entityform_create'
- entityform_entity_info in ./
entityform.module - Implement hook_entity_info().
File
- ./
entityform.module, line 573 - 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);
}