File "CalculationMethodOptions.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping-pro/src/WPDesk/FSPro/TableRate/CalculationMethodOptions.php
File size: 538 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Class CartCalculationOptions
*
* @package WPDesk\FSPro\TableRate
*/
namespace WPDesk\FSPro\TableRate;
/**
* Can provide calculation method options.
*/
class CalculationMethodOptions extends \FSProVendor\WPDesk\FS\TableRate\CalculationMethodOptions {
/**
* @return array
*/
public function get_options() {
return array(
'sum' => __( 'Sum', 'flexible-shipping-pro' ),
'lowest' => __( 'Lowest cost', 'flexible-shipping-pro' ),
'highest' => __( 'Highest cost', 'flexible-shipping-pro' ),
);
}
}