You are here

function get_bundle_crud_info in Entity Construction Kit (ECK) 7

Same name and namespace in other branches
  1. 7.3 eck.entity.inc \get_bundle_crud_info()
  2. 7.2 eck.entity.inc \get_bundle_crud_info()
4 calls to get_bundle_crud_info()
eck__entity__menu in ./eck.entity.inc
This function creates the menu items related to entity administration
eck__entity__overview in ./eck.entity.inc
This is the callback function for the entity overview page. This page shows all of the entities created of a given type and bundle
eck__entity__uri in ./eck.module
Entity URI callback
entity_table in ./eck.module
Creates a table showing a group of entities.

File

./eck.entity.inc, line 95
All the menus, pages, and functionality related to administering entities.

Code

function get_bundle_crud_info($entity_type, $bundle) {
  $info = entity_get_info();
  return $info[$entity_type]['bundles'][$bundle]['crud'];
}