You are here

public function Manual::getDescription in Ubercart 8.4

Returns a description of this shipping method.

Return value

string The description.

Overrides FulfillmentMethodPluginInterface::getDescription

File

shipping/uc_fulfillment/src/Plugin/Ubercart/FulfillmentMethod/Manual.php, line 82

Class

Manual
Provides a manual fulfillment plugin.

Namespace

Drupal\uc_fulfillment\Plugin\Ubercart\FulfillmentMethod

Code

public function getDescription() {
  return $this
    ->t('No specific carrier, no pre-paid shipping labels');
}