1.20.x file.file.inc | file_file_metadata_info() |
Implements hook_file_metadata_info().
File
- modules/
file/ file.file.inc, line 286 - File hooks implemented by the File module.
Code
function file_file_metadata_info() {
$info['width'] = array('label' => t('Width'), 'type' => 'integer');
$info['height'] = array('label' => t('Height'), 'type' => 'integer');
return $info;
}