function _itweak_upload_display_options in iTweak Upload 7.3
2 calls to _itweak_upload_display_options()
File
- ./
itweak_upload.module, line 164 - iTweakUpload - Tweak attachments display and file upload forms.
Code
function _itweak_upload_display_options() {
$display_options = array(
ITU_DISPLAY_DISABLED => t('Display disabled'),
ITU_DISPLAY_ALL_FILES_NO_THUMBNAILS => t('Show files list (images included as files)'),
ITU_DISPLAY_ALL_FILES_WITH_THUMBNAILS => t('Show files list with image thumbnails'),
ITU_DISPLAY_FILES_AND_GALLERY => t('Show files list and image gallery'),
ITU_DISPLAY_GALLERY => t('Show image gallery only'),
);
return $display_options;
}