function _uc_quote_method_enabled in Ubercart 6.2
Same name and namespace in other branches
- 5 shipping/uc_quote/uc_quote.module \_uc_quote_method_enabled()
Callback for array_filter().
4 string references to '_uc_quote_method_enabled'
- uc_cart_pane_quotes in shipping/
uc_quote/ uc_quote.module - Cart pane callback.
- uc_checkout_pane_quotes in shipping/
uc_quote/ uc_quote.module - Shipping quote checkout pane callback.
- uc_order_pane_quotes in shipping/
uc_quote/ uc_quote.module - Shipping quote order pane callback.
- _uc_quote_assemble_quotes in shipping/
uc_quote/ uc_quote.pages.inc - Pulls the get_quote_from_* triggers and assembles their returned data.
File
- shipping/
uc_quote/ uc_quote.module, line 1174 - The controller module for fulfillment modules that process physical goods.
Code
function _uc_quote_method_enabled($method) {
return $method['enabled'];
}