function _entity_metadata_core_modules in Entity API 7
2 calls to _entity_metadata_core_modules()
- entity_entity_property_info in ./
entity.info.inc - Implements hook_entity_property_info().
- entity_entity_property_info_alter in ./
entity.info.inc - Implements hook_entity_property_info_alter().
File
- ./
entity.info.inc, line 52 - Provides basic entity property info for entities provided via the CRUD API, as well as property info for all entity types defined by core. For that the respective modules/MODULE.info.inc files are included.
Code
function _entity_metadata_core_modules() {
return array_filter(array(
'book',
'comment',
'field',
'locale',
'node',
'taxonomy',
'user',
'system',
'statistics',
), 'module_exists');
}