You are here

function entity_type_load in Entity Construction Kit (ECK) 7.3

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

Entity type load.

18 calls to entity_type_load()
eck_form_field_ui_field_overview_form_alter in ./eck.module
Adds a manage properties section.
eck_form_field_ui_field_overview_form_submit in ./eck.module
Form submission handler for ECK's additions to field_ui_field_overview_form.
eck_form_field_ui_field_overview_form_validate in ./eck.module
Validates the add property as extra field of field_ui_field_overview_form().
eck__bundle__add in ./eck.bundle.inc
Bundle add from callback.
eck__bundle__delete_form in ./eck.bundle.inc
Bundle delete form callback.

... See full list

File

./eck.module, line 389

Code

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