You are here

function entity_entity_view_content_type_info in Entity API 7

Get the entity content type info.

1 string reference to 'entity_entity_view_content_type_info'
entity_view.inc in ctools/content_types/entity_view.inc

File

ctools/content_types/entity_view.inc, line 18

Code

function entity_entity_view_content_type_info($entity_type) {
  $types = entity_entity_view_content_type_content_types();
  if (isset($types[$entity_type])) {
    return $types[$entity_type];
  }
}