You are here

function computing_record_create_entity in Drupal Computing 7.2

1 call to computing_record_create_entity()
computing_create in ./computing.module
Create a computing record and save it as an entity.
1 string reference to 'computing_record_create_entity'
computing_entity_info in ./computing.entity.inc
Implement hook_entity_info().

File

./computing.entity.inc, line 89
Code for the entity. This does not allow UI to create Computing Record entities or Computing Application entities. It has to be done in program.

Code

function computing_record_create_entity($values = array()) {
  return entity_get_controller('computing_record')
    ->create($values);
}