You are here

function party_handler_filter_party_attached_entity_type::get_value_options in Party 7

Same name and namespace in other branches
  1. 8.2 includes/views/party_handler_filter_party_attached_entity_type.inc \party_handler_filter_party_attached_entity_type::get_value_options()

Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.

This can use a guard to be used to reduce database hits as much as possible.

Return value

Return the stored values in $this->value_options if someone expects it.

Overrides views_handler_filter_in_operator::get_value_options

File

includes/views/party_handler_filter_party_attached_entity_type.inc, line 7
Filter by attached entity type.

Class

party_handler_filter_party_attached_entity_type
@file Filter by attached entity type.

Code

function get_value_options() {
  if (!isset($this->value_options)) {
    $this->value_title = t('Attached entity types');
    $entity_types = entity_get_info();
    foreach ($entity_types as $type => $info) {

      // Entities with a CRM controller class have data sets.
      if (isset($info['crm controller class'])) {
        $options[$type] = $info['label'];
      }
    }
    asort($options);
    $this->value_options = $options;
  }
}