function exif_date_formats in Exif 7
Same name and namespace in other branches
- 6 exif.module \exif_date_formats()
Date API hook.
Make the EXIF date format default for the 'exif' date type.
File
- ./
exif.module, line 405
Code
function exif_date_formats() {
return array(
array(
'type' => 'exif',
'format' => 'Y:m:d H:i:s',
),
);
}