You are here

function computing_application_create_entity in Drupal Computing 7.2

1 call to computing_application_create_entity()
computing_install in ./computing.install
Implements hook_install()
1 string reference to 'computing_application_create_entity'
computing_entity_info in ./computing.entity.inc
Implement hook_entity_info().

File

./computing.entity.inc, line 94
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_application_create_entity($values = array()) {
  return entity_get_controller('computing_application')
    ->create($values);
}