FALSE, 'bool' => TRUE); return $options; } function options_form(&$form, &$form_state) { $form['filemime_image'] = array( '#title' => t('Display an icon representing the file type, instead of the MIME text (such as "image/jpeg")'), '#type' => 'checkbox', '#default_value' => !empty($this->options['filemime_image']), ); parent::options_form($form, $form_state); } function render($values) { $data = $values->{$this->field_alias}; if (!empty($this->options['filemime_image']) && $data !== NULL && $data !== '') { $fake_file = (object) array('filemime' => $data); $data = theme('file_icon', array('file' => $fake_file)); } return $this->render_link($data, $values); } }