class USPS in Commerce USPS 8
Provides the USPS shipping method.
The "_9xxx" ids represent various First-Class Mail services that share the same service id of 0 from USPS api (sad!).
Plugin annotation
@CommerceShippingMethod(
id = "usps",
label = @Translation("USPS"),
services = {
"_9999" = @translation("First-Class Mail Large Envelope"),
"_9998" = @translation("First-Class Mail Stamped Letter"),
"_9997" = @translation("First-Class Mail Postcards"),
"_9996" = @translation("First-Class Mail Package Service - Retail"),
"_1" = @translation("Priority Mail"),
"_2" = @translation("Priority Mail Express Hold For Pickup"),
"_3" = @translation("Priority Mail Express"),
"_4" = @translation("USPS Retail Ground"),
"_6" = @translation("Media Mail Parcel"),
"_7" = @translation("Library Mail Parcel"),
"_13" = @translation("Priority Mail Express Flat Rate Envelope"),
"_15" = @translation("First-Class Mail Large Postcards"),
"_16" = @translation("Priority Mail Flat Rate Envelope"),
"_17" = @translation("Priority Mail Medium Flat Rate Box"),
"_22" = @translation("Priority Mail Large Flat Rate Box"),
"_23" = @translation("Priority Mail Express Sunday/Holiday Delivery"),
"_25" = @translation("Priority Mail Express Sunday/Holiday Delivery Flat Rate Envelope"),
"_27" = @translation("Priority Mail Express Flat Rate Envelope Hold For Pickup"),
"_28" = @translation("Priority Mail Small Flat Rate Box"),
"_29" = @translation("Priority Mail Padded Flat Rate Envelope"),
"_30" = @translation("Priority Mail Express Legal Flat Rate Envelope"),
"_31" = @translation("Priority Mail Express Legal Flat Rate Envelope Hold For Pickup"),
"_32" = @translation("Priority Mail Express Sunday/Holiday Delivery Legal Flat Rate Envelope"),
"_33" = @translation("Priority Mail Hold For Pickup"),
"_34" = @translation("Priority Mail Large Flat Rate Box Hold For Pickup"),
"_35" = @translation("Priority Mail Medium Flat Rate Box Hold For Pickup"),
"_36" = @translation("Priority Mail Small Flat Rate Box Hold For Pickup"),
"_37" = @translation("Priority Mail Flat Rate Envelope Hold For Pickup"),
"_38" = @translation("Priority Mail Gift Card Flat Rate Envelope"),
"_39" = @translation("Priority Mail Gift Card Flat Rate Envelope Hold For Pickup"),
"_40" = @translation("Priority Mail Window Flat Rate Envelope"),
"_41" = @translation("Priority Mail Window Flat Rate Envelope Hold For Pickup"),
"_42" = @translation("Priority Mail Small Flat Rate Envelope"),
"_43" = @translation("Priority Mail Small Flat Rate Envelope Hold For Pickup"),
"_44" = @translation("Priority Mail Legal Flat Rate Envelope"),
"_45" = @translation("Priority Mail Legal Flat Rate Envelope Hold For Pickup"),
"_46" = @translation("Priority Mail Padded Flat Rate Envelope Hold For Pickup"),
"_47" = @translation("Priority Mail Regional Rate Box A"),
"_48" = @translation("Priority Mail Regional Rate Box A Hold For Pickup"),
"_49" = @translation("Priority Mail Regional Rate Box B"),
"_50" = @translation("Priority Mail Regional Rate Box B Hold For Pickup"),
"_53" = @translation("First-Class/Package Service Hold For Pickup"),
"_55" = @translation("Priority Mail Express Flat Rate Boxes"),
"_56" = @translation("Priority Mail Express Flat Rate Boxes Hold For Pickup"),
"_57" = @translation("Priority Mail Express Sunday/Holiday Delivery Flat Rate Boxes"),
"_58" = @translation("Priority Mail Regional Rate Box C"),
"_59" = @translation("Priority Mail Regional Rate Box C Hold For Pickup"),
"_61" = @translation("First-Class/Package Service"),
"_62" = @translation("Priority Mail Express Padded Flat Rate Envelope"),
"_63" = @translation("Priority Mail Express Padded Flat Rate Envelope Hold For Pickup"),
"_64" = @translation("Priority Mail Express Sunday/Holiday Delivery Padded Flat Rate Envelope"),
"_77" = @translation("Parcel Select Ground"),
}
)
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\USPS
- 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 USPS
See also
\Drupal\commerce_usps\USPSRateRequest::resolveRates().
File
- src/
Plugin/ Commerce/ ShippingMethod/ USPS.php, line 73
Namespace
Drupal\commerce_usps\Plugin\Commerce\ShippingMethodView source
class USPS extends USPSBase {
/**
* {@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 [];
}
// Only 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. | |
USPS:: |
public | function |
Calculates rates for the given shipment. Overrides ShippingMethodInterface:: |
|
USPSBase:: |
protected | property | The USPSRateRequest class. | |
USPSBase:: |
public | function |
Form constructor. Overrides ShippingMethodBase:: |
|
USPSBase:: |
public static | function |
Creates an instance of the plugin. Overrides ShippingMethodBase:: |
1 |
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:: |