class USPSInternational in Commerce USPS 8
Provides the USPS international shipping method.
Plugin annotation
@CommerceShippingMethod(
id = "usps_international",
label = @Translation("USPS International"),
services = {
"_1" = @translation("Priority Mail Express International"),
"_2" = @translation("Priority Mail International"),
"_4" = @translation("Global Express Guaranteed (GXG)"),
"_5" = @translation("Global Express Guaranteed Document"),
"_6" = @translation("Global Express Guaranteed Non-Document Rectangular"),
"_7" = @translation("Global Express Guaranteed Non-Document Non-Rectangular"),
"_8" = @translation("Priority Mail International Flat Rate Envelope"),
"_9" = @translation("Priority Mail International Medium Flat Rate Box"),
"_10" = @translation("Priority Mail Express International Flat Rate Envelope"),
"_11" = @translation("Priority Mail International Large Flat Rate Box"),
"_12" = @translation("USPS GXG Envelopes"),
"_13" = @translation("First-Class Mail International Letter"),
"_14" = @translation("First-Class Mail International Large Envelope"),
"_15" = @translation("First-Class Package International Service"),
"_16" = @translation("Priority Mail International Small Flat Rate Box"),
"_17" = @translation("Priority Mail Express International Legal Flat Rate Envelope"),
"_18" = @translation("Priority Mail International Gift Card Flat Rate Envelope"),
"_19" = @translation("Priority Mail International Window Flat Rate Envelope"),
"_20" = @translation("Priority Mail International Small Flat Rate Envelope"),
"_21" = @translation("First-Class Mail International Postcard"),
"_22" = @translation("Priority Mail International Legal Flat Rate Envelope"),
"_23" = @translation("Priority Mail International Padded Flat Rate Envelope"),
"_24" = @translation("Priority Mail International DVD Flat Rate priced box"),
"_25" = @translation("Priority Mail International Large Video Flat Rate priced box"),
"_26" = @translation("Priority Mail Express International Flat Rate Boxes"),
"_27" = @translation("Priority Mail Express International Padded Flat Rate Envelope"),
}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\commerce_shipping\Plugin\Commerce\ShippingMethod\ShippingMethodBase implements ShippingMethodInterface, ContainerFactoryPluginInterface
- class \Drupal\commerce_usps\Plugin\Commerce\ShippingMethod\USPSBase implements SupportsTrackingInterface
- class \Drupal\commerce_usps\Plugin\Commerce\ShippingMethod\USPSInternational
- class \Drupal\commerce_usps\Plugin\Commerce\ShippingMethod\USPSBase implements SupportsTrackingInterface
- class \Drupal\commerce_shipping\Plugin\Commerce\ShippingMethod\ShippingMethodBase implements ShippingMethodInterface, ContainerFactoryPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of USPSInternational
File
- src/
Plugin/ Commerce/ ShippingMethod/ USPSInternational.php, line 44
Namespace
Drupal\commerce_usps\Plugin\Commerce\ShippingMethodView source
class USPSInternational extends USPSBase {
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('plugin.manager.commerce_package_type'), $container
->get('plugin.manager.workflow'), $container
->get('commerce_usps.usps_rate_request_international'));
}
/**
* {@inheritdoc}
*/
public function calculateRates(ShipmentInterface $shipment) {
// Only attempt to collect rates if an address exists on the shipment.
if ($shipment
->getShippingProfile()
->get('address')
->isEmpty()) {
return [];
}
// Do not attempt to collect rates for US addresses.
if ($shipment
->getShippingProfile()
->get('address')->country_code == 'US') {
return [];
}
// Make sure a package type is set on the shipment.
$this
->setPackageType($shipment);
return $this->uspsRateService
->getRates($shipment, $this->parentEntity);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
ShippingMethodBase:: |
protected | property | The package type manager. | |
ShippingMethodBase:: |
protected | property | The parent config entity. | |
ShippingMethodBase:: |
protected | property | The shipping services. | |
ShippingMethodBase:: |
protected | property | The workflow manager. | |
ShippingMethodBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
|
ShippingMethodBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
ShippingMethodBase:: |
public | function |
Gets the default package type. Overrides ShippingMethodInterface:: |
|
ShippingMethodBase:: |
public | function |
Gets the shipping method label. Overrides ShippingMethodInterface:: |
|
ShippingMethodBase:: |
public | function |
Gets the shipping services. Overrides ShippingMethodInterface:: |
|
ShippingMethodBase:: |
public | function |
Gets the shipment workflow ID. Overrides ShippingMethodInterface:: |
|
ShippingMethodBase:: |
public | function |
Selects the given shipping rate for the given shipment. Overrides ShippingMethodInterface:: |
|
ShippingMethodBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
ShippingMethodBase:: |
public | function |
Sets the parent entity. Overrides ParentEntityAwareInterface:: |
|
ShippingMethodBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
USPSBase:: |
protected | property | The USPSRateRequest class. | |
USPSBase:: |
public | function |
Form constructor. Overrides ShippingMethodBase:: |
|
USPSBase:: |
public | function |
Gets default configuration for this plugin. Overrides ShippingMethodBase:: |
|
USPSBase:: |
public | function |
Returns a tracking URL for USPS shipments. Overrides SupportsTrackingInterface:: |
|
USPSBase:: |
protected | function | Determine if we have the minimum information to connect to USPS. | |
USPSBase:: |
private | function | Prepares the service array keys to support integer values. | |
USPSBase:: |
protected | function | Ensure a package type exists on the shipment. | |
USPSBase:: |
public | function |
Form submission handler. Overrides ShippingMethodBase:: |
|
USPSBase:: |
public | function |
Constructs a new ShippingMethodBase object. Overrides ShippingMethodBase:: |
|
USPSInternational:: |
public | function |
Calculates rates for the given shipment. Overrides ShippingMethodInterface:: |
|
USPSInternational:: |
public static | function |
Creates an instance of the plugin. Overrides USPSBase:: |