'default', 'translatable' => TRUE); // Remove the separator options since we don't need them. unset($options['separator']); return $options; } function options_form(&$form, &$form_state) { parent::options_form($form, $form_state); // Remove the separator options since we don't need them. unset($form['separator']); $form['prefix']['#weight'] = 10; $form['suffix']['#weight'] = 10; $form['format'] = array( '#type' => 'select', '#title' => t('Time format'), '#default_value' => $this->options['format'], '#options' => array( 'default' => t('Default (usually mm:ss)'), 'hours' => t('Hours: h'), 'minutes' => t('Minutes: mm'), 'seconds' => t('Seconds: ss'), 'total' => t('Total seconds'), ), ); } function render($values) { $value = $values->{$this->field_alias}; switch ($this->options['format']) { case 'hours': $value = date('g', (int) $value); break; case 'minutes': $value = date('i', (int) $value); break; case 'seconds': $value = date('s', (int) $value); break; case 'total': $value = $value; break; default: $output = theme('filefield_meta_duration', $value); } // Check to see if hiding should happen before adding prefix and suffix. if ($this->options['hide_empty'] && empty($value) && ($value !== 0 || $this->options['empty_zero'])) { return ''; } return check_plain($this->options['prefix']) . $output . check_plain($this->options['suffix']); } }