- <?php
- * @file
- * A standard Views filter for a single date field,
- * using Date API form selectors and sql handling.
- */
- class date_views_filter_handler_simple extends views_handler_filter_date {
-
- * @var date_sql_handler
- */
- protected $date_handler = NULL;
-
-
- * @var string
- */
- protected $format;
-
-
- * @var string
- */
- protected $base_table;
-
-
- * @var views_plugin_query_default
- */
- var $query;
-
- function init(&$view, &$options) {
- parent::init($view, $options);
- $this->date_handler = new date_sql_handler(DATE_UNIX);
- if (!empty($this->definition['field_name'])) {
- $field = field_info_field($this->definition['field_name']);
- if (!empty($field) && !empty($field['type'])) {
- $this->date_handler->date_type = $field['type'];
- }
- $this->date_handler->db_timezone = date_get_timezone_db($field['settings']['tz_handling']);
- $this->date_handler->local_timezone = date_get_timezone($field['settings']['tz_handling']);
- }
- $this->date_handler->granularity = isset($options['granularity']) ? $options['granularity'] : 'day';
- $this->format = $this->date_handler->views_formats($this->options['granularity'], 'sql');
-
-
-
- $this->base_table = $this->table;
- }
-
-
- function option_definition() {
- $options = parent::option_definition();
- $options['granularity'] = array('default' => 'day');
- $options['form_type'] = array('default' => 'date_select');
- $options['default_date'] = array('default' => '');
- $options['default_to_date'] = array('default' => '');
- $options['year_range'] = array('default' => '-3:+3');
- $options['add_delta'] = array('default' => '');
- return $options;
- }
-
- function operators() {
- $operators = parent::operators();
- $operators['contains'] = array(
- 'title' => t('Contains'),
- 'method' => 'op_contains',
- 'short' => t('contains'),
- 'values' => 1,
- );
- return $operators;
- }
-
-
- * Helper function to find a default value.
- */
- function date_default_value($prefix, $options = NULL) {
- if (empty($options)) {
- $options = $this->options;
- }
-
- if (!empty($this->options['expose']['remember'])) {
- $display_id = ($this->view->display_handler->is_defaulted('filters')) ? 'default' : $this->view->current_display;
- if (!empty($_SESSION['views'][$this->view->name][$display_id][$this->options['expose']['identifier']][$prefix])) {
- return $_SESSION['views'][$this->view->name][$display_id][$this->options['expose']['identifier']][$prefix];
- }
- }
-
-
- $default_option = $prefix == 'max' ? $options['default_to_date'] : $options['default_date'];
- if (!empty($default_option)) {
- str_replace('now', 'today', $default_option);
- $date = date_create($default_option, date_default_timezone_object());
- $default_date = !empty($date) ? $date->format($this->format) : '';
-
-
- $default_date = str_replace('T', ' ', $default_date);
- }
- else {
- $default_date = isset($options['value'][$prefix]) ? $options['value'][$prefix] : '';
- }
- return $default_date;
- }
-
-
- * Helper function to see if we need to swap in the default value.
- *
- * Views exposed filters treat everything as submitted, so if it's an empty value we have to
- * see if anything actually was submitted. If nothing has really been submitted, we need
- * to swap in our default value logic.
- */
- function get_filter_value($prefix, $input) {
-
-
-
- if (empty($input)) {
- if (empty($this->options['exposed'])) {
- return str_replace(' ', 'T', $this->date_default_value($prefix));
- }
- elseif (isset($this->options['expose']['identifier']) && !isset($_GET[$this->options['expose']['identifier']])) {
- return str_replace(' ', 'T', $this->date_default_value($prefix));
- }
- }
-
- return str_replace(' ', 'T', $input);
- }
-
- function accept_exposed_input($input) {
- if (!empty($this->options['exposed'])) {
- $element_input = $input[$this->options['expose']['identifier']];
- $element_input['value'] = $this->get_filter_value('value', !empty($element_input['value']) ? $element_input['value'] : '');
- $element_input['min'] = $this->get_filter_value('min', !empty($element_input['min']) ? $element_input['min'] : '');
- $element_input['max'] = $this->get_filter_value('max', !empty($element_input['max']) ? $element_input['max'] : '');
- if (is_array($element_input) && isset($element_input['default_date'])) {
- unset($element_input['default_date']);
- }
- if (is_array($element_input) && isset($element_input['default_to_date'])) {
- unset($element_input['default_to_date']);
- }
-
- $input[$this->options['expose']['identifier']] = $element_input;
- }
- return parent::accept_exposed_input($input);
-
- }
-
- function op_between($field) {
-
-
- list($table_name, $field_name) = explode('.', $field);
- if (!empty($this->options['add_delta']) && (substr($field_name, -6) == '_value' || substr($field_name, -7) == '_value2')) {
- $this->query->add_field($table_name, 'delta');
- $real_field_name = str_replace(array('_value', '_value2'), '', $this->real_field);
- $this->query->add_field($table_name, 'entity_id', 'date_id_' . $real_field_name);
- $this->query->add_field($table_name, 'delta', 'date_delta_' . $real_field_name);
- }
-
- $min_value = $this->get_filter_value('min', $this->value['min']);
- $min_comp_date = new BackdropDateTime($min_value, date_default_timezone(), $this->format);
- $max_value = $this->get_filter_value('max', $this->value['max']);
- $max_comp_date = new BackdropDateTime($max_value, date_default_timezone(), $this->format);
- $field_min = $this->date_handler->sql_field($field, NULL, $min_comp_date);
- $field_min = $this->date_handler->sql_format($this->format, $field_min);
- $field_max = $this->date_handler->sql_field($field, NULL, $max_comp_date);
- $field_max = $this->date_handler->sql_format($this->format, $field_max);
- $placeholder_min = $this->placeholder();
- $placeholder_max = $this->placeholder();
- $group = !empty($this->options['date_group']) ? $this->options['date_group'] : $this->options['group'];
- if ($this->operator == 'between') {
- $this->query->add_where_expression($group, "$field_min >= $placeholder_min AND $field_max <= $placeholder_max", array($placeholder_min => $min_value, $placeholder_max => $max_value));
- }
- else {
- $this->query->add_where_expression($group, "$field_min < $placeholder_min OR $field_max > $placeholder_max", array($placeholder_min => $min_value, $placeholder_max => $max_value));
- }
- }
-
- function op_simple($field) {
-
-
- list($table_name, $field_name) = explode('.', $field);
- if (!empty($this->options['add_delta']) && (substr($field_name, -6) == '_value' || substr($field_name, -7) == '_value2')) {
- $this->query->add_field($table_name, 'delta');
- $real_field_name = str_replace(array('_value', '_value2'), '', $this->real_field);
- $this->query->add_field($table_name, 'entity_id', 'date_id_' . $real_field_name);
- $this->query->add_field($table_name, 'delta', 'date_delta_' . $real_field_name);
- }
-
- $value = $this->get_filter_value('value', $this->value['value']);
- $comp_date = new BackdropDateTime($value, date_default_timezone(), $this->format);
- $field = $this->date_handler->sql_field($field, NULL, $comp_date);
- $field = $this->date_handler->sql_format($this->format, $field);
- $placeholder = $this->placeholder();
- $group = !empty($this->options['date_group']) ? $this->options['date_group'] : $this->options['group'];
- $this->query->add_where_expression($group, "$field $this->operator $placeholder", array($placeholder => $value));
- }
-
- function op_contains($field) {
-
-
- list($table_name, $field_name) = explode('.', $field);
- if (!empty($this->options['add_delta']) && (substr($field_name, -6) == '_value' || substr($field_name, -7) == '_value2')) {
- $this->query->add_field($table_name, 'delta');
- }
-
- $value = $this->get_filter_value('value', $this->value['value']);
- $comp_date = new BackdropDateTime($value, date_default_timezone(), $this->format);
- $fields = date_views_fields($this->base_table);
- $fields = $fields['name'];
- $fromto = $fields[$field]['fromto'];
- $field_min = $this->date_handler->sql_field($fromto[0], NULL, $comp_date);
- $field_min = $this->date_handler->sql_format($this->format, $field_min);
- $field_max = $this->date_handler->sql_field($fromto[1], NULL, $comp_date);
- $field_max = $this->date_handler->sql_format($this->format, $field_max);
- $placeholder_min = $this->placeholder();
- $placeholder_max = $this->placeholder();
- $group = !empty($this->options['date_group']) ? $this->options['date_group'] : $this->options['group'];
- $this->query->add_where_expression($group, "$field_max >= $placeholder_min AND $field_min <= $placeholder_max", array($placeholder_min => $value, $placeholder_max => $value));
- }
-
-
- * Set the granularity of the date parts to use in the filter.
- */
- function has_extra_options() { return TRUE; }
-
-
- * Date selection options.
- */
- function widget_options() {
- $options = array(
- 'date_select' => t('Select'),
- 'date_text' => t('Text'),
- 'date_popup' => t('Popup'),
- );
- return $options;
- }
-
- function year_range() {
- $year_range = explode(':', $this->options['year_range']);
- if (substr($this->options['year_range'], 0, 1) == '-' || $year_range[0] < 0) {
- $this_year = date_format(date_now(), 'Y');
- $year_range[0] = $this_year + $year_range[0];
- $year_range[1] = $this_year + $year_range[1];
- }
- return $year_range;
- }
-
- function extra_options_form(&$form, &$form_state) {
- parent::extra_options_form($form, $form_state);
- $form['form_type'] = array(
- '#type' => 'radios',
- '#title' => t('Date selection form element'),
- '#default_value' => $this->options['form_type'],
- '#options' => $this->widget_options(),
- );
-
- $form['granularity'] = $this->date_handler->granularity_form($this->options['granularity']);
- $form['granularity']['#title'] = t('Filter granularity');
-
- $form['year_range'] = array(
- '#type' => 'date_year_range',
- '#default_value' => $this->options['year_range'],
- );
-
- if (!empty($this->definition['field_name'])) {
- $field = field_info_field($this->definition['field_name']);
- }
- $form['add_delta'] = array(
- '#type' => 'radios',
- '#title' => t('Add multiple value identifier'),
- '#default_value' => $this->options['add_delta'],
- '#options' => array('' => t('No'), 'yes' => t('Yes')),
- '#description' => t('Add an identifier to the view to show which multiple value date fields meet the filter criteria. Note: This option may introduce duplicate values into the view. Required when using multiple value fields in a Calendar or any time you want the node view of multiple value dates to display only the values that match the view filters.'),
-
- '#access' => !empty($field) ? $field['cardinality'] != 1 : 0,
- );
- }
-
- function extra_options_validate($form, &$form_state) {
- if (!preg_match('/^(?:[\+\-][0-9]{1,4}|[0-9]{4}):(?:[\+\-][0-9]{1,4}|[0-9]{4})$/', $form_state['values']['options']['year_range'])) {
- form_error($form['year_range'], t('Date year range must be in the format -9:+9, 2005:2010, -9:2010, or 2005:+9'));
- }
- }
-
-
- * Add the selectors to the value form using the date handler.
- */
- function value_form(&$form, &$form_state) {
-
-
- $form['value'] = array();
- $form['value']['#tree'] = TRUE;
- $form['value']['#id'] = 'date_views_exposed_filter-' . bin2hex(backdrop_random_bytes(16));
-
-
- $which = 'all';
- $source = '';
- if (!empty($form['operator'])) {
- $source = ($form['operator']['#type'] == 'radios') ? 'radio:options[operator]' : '#edit-options-operator';
- }
-
- $identifier = $this->options['expose']['identifier'];
- if (!empty($form_state['exposed'])) {
-
- if (empty($this->options['expose']['use_operator']) || empty($this->options['expose']['operator_id'])) {
-
- $which = in_array($this->operator, $this->operator_values(2)) ? 'minmax' : 'value';
- }
- else {
- $source = '#edit-' . backdrop_html_id($this->options['expose']['operator_id']);
- }
- }
-
- if ($which == 'all' || $which == 'value') {
- $form['value'] += $this->date_parts_form($form_state, 'value', $source, $which, $this->operator_values(1), $identifier, 'default_date');
- }
-
- if ($which == 'all' || $which == 'minmax') {
- $form['value'] += $this->date_parts_form($form_state, 'min', $source, $which, $this->operator_values(2), $identifier, 'default_date');
- $form['value'] += $this->date_parts_form($form_state, 'max', $source, $which, $this->operator_values(2), $identifier, 'default_to_date');
- }
-
-
-
- if ($this->options['form_type'] == 'date_select') {
- $form['value']['#element_validate'] = array(array($this, 'date_select_validate'));
- }
-
- }
-
-
- * A form element to select date part values.
- *
- * @param string $prefix
- * A prefix for the date values, 'value', 'min', or 'max' .
- * @param string $source
- * An HTML selector for the operator for this element.
- * @param string $which
- * Which element to provide, 'all', 'value', or 'minmax' .
- * @param array $operator_values
- * An array of the allowed operators for this element.
- * @param string $identifier
- * Identifier of the exposed element.
- * @param string $relative_id
- * Form element ID to use for the relative date field.
- *
- * @return
- * The form date part element for this instance.
- */
- function date_parts_form(&$form_state, $prefix, $source, $which, $operator_values, $identifier, $relative_id) {
- module_load_include('inc', 'date', 'date.elements');
- switch ($prefix) {
- case 'min':
- $label = t('Start date');
- $relative_label = t('Relative start date');
- break;
- case 'max':
- $label = t('End date');
- $relative_label = t('Relative end date');
- break;
- default:
- $label = '';
- $relative_label = t('Relative date');
- break;
- }
-
- $type = $this->options['form_type'];
- $format = $this->date_handler->views_formats($this->options['granularity'], 'display');
- $granularity = array_keys($this->date_handler->date_parts($this->options['granularity']));
- $relative_value = ($prefix == 'max' ? $this->options['default_to_date'] : $this->options['default_date']);
-
- if (!empty($form_state['exposed'])) {
-
- $default_date = $this->date_default_value($prefix);
- $form[$prefix] = array(
- '#title' => check_plain($label),
- '#type' => $type,
- '#size' => 20,
- '#default_value' => !empty($this->value[$prefix]) ? $this->value[$prefix] : $default_date,
- '#date_format' => date_limit_format($format, $granularity),
- '#date_label_position' => 'within',
- '#date_year_range' => $this->options['year_range'],
- '#process' => array($type . '_element_process'),
- );
- if ($which == 'all') {
- $form[$prefix]['#states']['visible'] = array();
- foreach ($operator_values as $operator) {
- $form[$prefix]['#states']['visible'][] = array(
- $source => array('value' => $operator),
- );
- }
- }
- if (!isset($form_state['input'][$identifier][$prefix])) {
-
- if (isset($form_state['input'][$identifier]) && !is_array($form_state['input'][$identifier])) {
- $form_state['input'][$identifier] = array();
- }
-
- foreach ($granularity as $key) {
- $form_state['input'][$identifier][$prefix][$key] = NULL;
- }
- }
- }
- else {
-
- $default_date = '';
- $form[$prefix . '_group'] = array(
- '#type' => 'fieldset',
- '#attributes' => array('class' => array('date-views-filter-fieldset')),
- );
- $form[$prefix . '_group'][$prefix . '_choose_input_type'] = array(
- '#title' => check_plain($label),
- '#type' => 'select',
- '#options' => array('date' => t('Select a date'), 'relative' => ('Enter a relative date')),
- '#attributes' => array('class' => array($prefix . '-choose-input-type')),
- '#default_value' => !empty($relative_value) ? 'relative' : 'date',
- );
- $form[$prefix . '_group'][$prefix] = array(
- '#title' => t('Select a date'),
- '#type' => $type,
- '#size' => 20,
- '#default_value' => !empty($this->value[$prefix]) ? $this->value[$prefix] : $default_date,
- '#date_format' => date_limit_format($format, $granularity),
- '#date_label_position' => 'within',
- '#date_year_range' => $this->options['year_range'],
- '#process' => array($type . '_element_process'),
- '#states' => array(
- 'visible' => array(
- ":input.{$prefix}-choose-input-type" => array('value' => 'date'),
- ),
- ),
- );
- $form[$prefix . '_group'][$relative_id] = array(
- '#type' => 'textfield',
- '#title' => check_plain($relative_label),
- '#default_value' => $relative_value,
- '#description' => t('Relative dates are computed when the view is displayed. Examples: now, now +1 day, 12AM today, Monday next week. <a href="http://php.net/manual/en/datetime.formats.relative.php">More examples of relative date formats in the PHP documentation</a>.'),
- '#states' => array(
- 'visible' => array(
- ":input.{$prefix}-choose-input-type" => array('value' => 'relative'),
- ),
- ),
- );
- if ($which == 'all') {
- $form[$prefix . '_group']['#states']['visible'] = array();
- foreach ($operator_values as $operator) {
- $form[$prefix . '_group']['#states']['visible'][] = array(
- $source => array('value' => $operator),
- );
- }
- }
- }
- return $form;
- }
-
-
- * Value validation.
- *
- * TODO add in more validation.
- *
- * We are setting an extra option using a value form
- * because it makes more sense to set it there.
- * That's not the normal method, so we have to manually
- * transfer the selected value back to the option.
- */
- function value_validate($form, &$form_state) {
-
- $options = &$form_state['values']['options'];
-
- if ($options['operator'] == 'between' || $options['operator'] == 'not between') {
- if ($options['value']['min_group']['min_choose_input_type'] == 'relative') {
- if (empty($options['value']['min_group']['default_date'])) {
- form_set_error('options][value][min_group][default_date', t('Relative start date not specified.'));
- }
- else {
- $this->options['default_date'] = $options['value']['min_group']['default_date'];
-
- $options['value']['min_group']['min'] = NULL;
- }
- }
-
- else {
- $this->options['default_date'] = '';
- }
- if ($options['value']['max_group']['max_choose_input_type'] == 'relative') {
- if (empty($options['value']['max_group']['default_to_date'])) {
- form_set_error('options][value][max_group][default_to_date', t('Relative end date not specified.'));
- }
- else {
- $this->options['default_to_date'] = $options['value']['max_group']['default_to_date'];
-
- $options['value']['max_group']['max'] = NULL;
- }
- }
-
- else {
- $this->options['default_to_date'] = '';
- }
- }
- elseif (in_array($options['operator'], array('<', '<=', '=', '!=', '>=', '>'))) {
- if ($options['value']['value_group']['value_choose_input_type'] == 'relative') {
- if (empty($options['value']['value_group']['default_date'])) {
- form_set_error('options][value][value_group][default_date', t('Relative date not specified.'));
- }
- else {
- $this->options['default_date'] = $options['value']['value_group']['default_date'];
-
- $options['value']['value_group']['value'] = NULL;
- }
- }
-
- else {
- $this->options['default_date'] = '';
- }
- }
-
- foreach (array('value', 'min', 'max') as $key) {
- $options['value'][$key] = $options['value'][$key . '_group'][$key];
- }
- }
-
-
- * Validate that the time values convert to something usable.
- */
- function validate_valid_time(&$form, $operator, $value) {
-
-
- }
-
-
-
- function admin_summary() {
- $parts = $this->date_handler->date_parts();
- $widget_options = $this->widget_options();
-
- if ($this->options['exposed']) {
- return t('<strong>Exposed</strong> @widget @format', array('@format' => $parts[$this->date_handler->granularity], '@widget' => $widget_options[$this->options['form_type']]));
- }
-
- $output = '';
- if (in_array($this->operator, $this->operator_values(2))) {
- $min = check_plain(!empty($this->options['default_date']) ? $this->options['default_date'] : $this->options['value']['min']);
- $max = check_plain(!empty($this->options['default_to_date']) ? $this->options['default_to_date'] : $this->options['value']['max']);
- $output .= t('@min and @max', array('@min' => $min, '@max' => $max));
- }
- else {
- $output .= check_plain(!empty($this->options['default_date']) ? $this->options['default_date'] : $this->options['value']['value']);
- }
- return $output;
- }
-
-
- * Validation hook for exposed filters that use the select widget.
- *
- * This is to ensure the the user completes all parts of the date not just some parts. Only needed for the select widget.
- */
- function date_select_validate(&$form, &$form_state) {
-
- if (empty($form['value']) && empty($form['min'])) {
- return;
- }
- $granularity = (!empty($form['min']['#date_format'])) ? date_format_order($form['min']['#date_format']) : date_format_order($form['value']['#date_format']);
- $filled = array();
- $value = backdrop_array_get_nested_value($form_state['input'], $form['#parents']);
- foreach ($granularity as $part) {
- if (isset($value['value']) && is_numeric($value['value'][$part])) {
- $filled[] = $part;
- }
- }
- if (!empty($filled) && count($filled) != count($granularity)) {
- $unfilled = array_diff($granularity, $filled);
- foreach ($unfilled as $part) {
- switch ($part) {
- case 'year':
- form_error($form['value'][$part], t('Please choose a year.'));
- break;
-
- case 'month':
- form_error($form['value'][$part], t('Please choose a month.'));
- break;
-
- case 'day':
- form_error($form['value'][$part], t('Please choose a day.'));
- break;
-
- case 'hour':
- form_error($form['value'][$part], t('Please choose an hour.'));
- break;
-
- case 'minute':
- form_error($form['value'][$part], t('Please choose a minute.'));
- break;
-
- case 'second':
- form_error($form['value'][$part], t('Please choose a second.'));
- break;
- }
- }
- }
- }
- }