You are here

og_handler_filter_group_audience_state.inc in Organic groups 7.2

Contains the group filter for field group audience - state.

File

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

/**
 * @file
 * Contains the group filter for field group audience - state.
 */

/**
 * Field group audience - "state" filter handler.
 */
class og_handler_filter_group_audience_state extends views_handler_filter_in_operator {
  function get_value_options() {
    if (!isset($this->value_options)) {
      $this->value_title = t('Group content state');
      $this->value_options = og_group_content_states();
    }
  }

}

Classes

Namesort descending Description
og_handler_filter_group_audience_state Field group audience - "state" filter handler.