system_entity_info

Versions
mediamosa-21
system_entity_info()

Implements hook_entity_info().

Code

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,
    ),
  );
}
?>