You are here

og_handler_filter_group_state.inc in Organic groups 7

File

includes/views/og_handler_filter_group_state.inc
View source
<?php

/**
 * Filter by group state.
 */
class og_handler_filter_group_state extends views_handler_filter_in_operator {
  function get_value_options() {
    if (!isset($this->value_options)) {
      $this->value_title = t('Group state');
      $this->value_options = og_group_states();
    }
  }

}

Classes

Namesort descending Description
og_handler_filter_group_state Filter by group state.