You are here

function entity_type_load in Entity Construction Kit (ECK) 7.2

Same name and namespace in other branches
  1. 7.3 eck.module \entity_type_load()

Entity type load.

9 calls to entity_type_load()
eck__bundle__add in ./eck.bundle.inc
Bundle add from callback.
eck__bundle__delete_form in ./eck.bundle.inc
Bundle delete form callback.
eck__bundle__edit_form in ./eck.bundle.inc
Form constructor for the entity bundle editing form.
eck__bundle__list in ./eck.bundle.inc
Page call back for the bundle overview table.
eck__entity_type__delete_form in ./eck.entity_type.inc
Delete entity type form callback.

... See full list

File

./eck.module, line 358

Code

function entity_type_load($entity_type_name) {
  return EntityType::loadByName($entity_type_name);
}