function PaymentViewsHandlerFilterPaymentMethodTitle::get_value_options in Payment 7
Implements views_handler_filter_in_operator::get_value_options().
Overrides views_handler_filter_in_operator::get_value_options
File
- views/
PaymentViewsHandlerFilterPaymentMethodTitle.inc, line 11
Class
- PaymentViewsHandlerFilterPaymentMethodTitle
- Filter by specific payment method, but show users their specific titles.
Code
function get_value_options() {
if (!isset($this->value_options)) {
$this->value_options = payment_method_options();
}
}