Automattic\WooCommerce\Internal\Fulfillments\Providers
EimskipShippingProvider{}└─ AbstractShippingProvider
Eimskip Shipping Provider class.
No Hooks.
Usage
$EimskipShippingProvider = new EimskipShippingProvider(); // use class methods
Methods
- public get_icon()
- public get_key()
- public get_name()
- public get_tracking_url( string $tracking_number )
EimskipShippingProvider{} EimskipShippingProvider{} code WC 10.3.3
class EimskipShippingProvider extends AbstractShippingProvider {
/**
* Get the key of the shipping provider.
*
* @return string
*/
public function get_key(): string {
return 'eimskip';
}
/**
* Get the name of the shipping provider.
*
* @return string
*/
public function get_name(): string {
return 'Eimskip';
}
/**
* Get the icon of the shipping provider.
*
* @return string
*/
public function get_icon(): string {
return esc_url( WC()->plugin_url() ) . '/assets/images/shipping_providers/eimskip.png';
}
/**
* Get the tracking URL for a given tracking number.
*
* @param string $tracking_number The tracking number.
* @return string The tracking URL.
*/
public function get_tracking_url( string $tracking_number ): string {
return 'https://www.eimskip.is/track/' . $tracking_number;
}
}