You are here

function imagefield_extended_check_checkboxes in ImageField Extended 6.4

1 string reference to 'imagefield_extended_check_checkboxes'
imagefield_extended_filefield_data_info in ./imagefield_extended.module
Implementation of hook_filefield_data_info().

File

./imagefield_extended.module, line 384
Insert additional fields into a FileField / ImageField data array.

Code

function imagefield_extended_check_checkboxes($checkbox) {
  return $checkbox === 1 ? t('Yes') : t('No');
}