system_entity_info()Implements hook_entity_info().
modules/system/system.module, line 254
<?php
function system_entity_info() {
return array(
'file' => array(
'label' => t('File'),
'base table' => 'file',
'object keys' => array(
'id' => 'fid',
),
'static cache' => FALSE,
),
);
}
?>