| 7 system.module | system_entity_info() |
| 8 system.module | system_entity_info() |
Implements hook_entity_info().
File
- 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,
),
);
}
Login or register to post comments