You are here

quiz_views_handler_filter_quiz_question.inc in Quiz 7.6

File

includes/views/handlers/quiz_views_handler_filter_quiz_question.inc
View source
<?php

/**
 * A filter that allows the user to show or hide all quiz questions.
 */
class quiz_views_handler_filter_quiz_question extends views_handler_filter_boolean_operator {
  function query() {
    $this
      ->ensure_my_table();
    $field = "{$this->table_alias}.{$this->real_field}";
    $types = array_keys(quiz_get_question_types());
    $in = $this->value ? 'IN' : 'NOT IN';
    $this->query
      ->add_where($this->options['group'], db_and()
      ->condition($field, $types, $in));
  }
  function get_value_options() {
    $this->value_options = array(
      1 => t('Yes'),
      0 => t('No'),
    );
  }

}

Classes

Namesort descending Description
quiz_views_handler_filter_quiz_question A filter that allows the user to show or hide all quiz questions.