File "Value-20250118035246.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping-pro/src/WPDesk/FSPro/TableRate/RuleCost/Value-20250118035246.php
File size: 541 bytes
MIME-type: text/x-php
Charset: utf-8

<?php


namespace WPDesk\FSPro\TableRate\RuleCost;

use WPDesk\FS\TableRate\RuleCost\RuleCostSettingsField;

class Value implements RuleCostSettingsField {

	public function get_field_name() {
		return 'per_value';
	}

	public function get_field_label() {
		return __( 'Value', 'flexible-shipping-pro' );
	}

	public function get_field_hint() {
		return __( 'Value for additional cost.', 'flexible-shipping-pro' );
	}

	public function get_field_type() {
		return 'number';
	}

	public function get_field_options() {
		return array();
	}

}