You are here

commerce_line_item_handler_filter_line_item_type.inc in Commerce Core 7

File

modules/line_item/includes/views/handlers/commerce_line_item_handler_filter_line_item_type.inc
View source
<?php

/**
 * Filter by line item type
 */
class commerce_line_item_handler_filter_line_item_type extends views_handler_filter_in_operator {
  function get_value_options() {
    if (!isset($this->value_options)) {
      $this->value_title = t('Line item type');
      foreach (commerce_line_item_type_get_name() as $type => $name) {
        $options[$type] = $name;
      }
      $this->value_options = $options;
    }
  }

}

Classes

Namesort descending Description
commerce_line_item_handler_filter_line_item_type Filter by line item type