You are here

function views_handler_field_date::options_form in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 handlers/views_handler_field_date.inc \views_handler_field_date::options_form()
  2. 7.3 handlers/views_handler_field_date.inc \views_handler_field_date::options_form()

Default options form that provides the label widget that all fields should have.

Overrides views_handler_field::options_form

1 call to views_handler_field_date::options_form()
views_handler_field_profile_date::options_form in modules/profile/views_handler_field_profile_date.inc
Default options form that provides the label widget that all fields should have.
1 method overrides views_handler_field_date::options_form()
views_handler_field_profile_date::options_form in modules/profile/views_handler_field_profile_date.inc
Default options form that provides the label widget that all fields should have.

File

handlers/views_handler_field_date.inc, line 17

Class

views_handler_field_date
A handler to provide proper displays for dates.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $time = time();
  $form['date_format'] = array(
    '#type' => 'select',
    '#title' => t('Date format'),
    '#options' => array(
      'small' => t('Short date format') . ' ' . format_date($time, 'small'),
      'medium' => t('Medium date format') . ' ' . format_date($time, 'medium'),
      'large' => t('Long date format') . ' ' . format_date($time, 'large'),
      'custom' => t('Custom'),
      'raw time ago' => t('Time ago'),
      'time ago' => t('Time ago (with "ago" appended)'),
      'raw time hence' => t('Time hence'),
      'time hence' => t('Time hence (with "hence" appended)'),
      'raw time span' => t('Time span (future dates start with - )'),
      'inverse time span' => t('Time span (past dates start with - )'),
      'time span' => t('Time span (with "ago/hence" appended)'),
    ),
    '#default_value' => isset($this->options['date_format']) ? $this->options['date_format'] : 'small',
  );
  $form['custom_date_format'] = array(
    '#type' => 'textfield',
    '#title' => t('Custom date format'),
    '#description' => t('If "Custom", see <a href="http://us.php.net/manual/en/function.date.php" target="_blank">the PHP docs</a> for date formats. If "Time ago", enter the number of different time units to display, which defaults to 2.'),
    '#default_value' => isset($this->options['custom_date_format']) ? $this->options['custom_date_format'] : '',
    '#process' => array(
      'views_process_dependency',
    ),
    '#dependency' => array(
      'edit-options-date-format' => array(
        'custom',
        'raw time ago',
        'time ago',
        'raw time hence',
        'time hence',
        'raw time span',
        'inverse time span',
        'time span',
      ),
    ),
  );
}