function system_entity_info

7.x system.module system_entity_info()

Implements hook_entity_info().

File

drupal-7.x/modules/system/system.module, line 275
Configuration system that lets administrators modify the workings of the site.

Code

function system_entity_info() {
  return array(
    'file' => array(
      'label' => t('File'),
      'base table' => 'file_managed',
      'entity keys' => array(
        'id' => 'fid',
        'label' => 'filename',
      ),
      'static cache' => FALSE,
    ),
  );
}