72 lines
2.2 KiB
PHP
Executable File
72 lines
2.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Booster for WooCommerce - Module - Shipping Descriptions
|
|
*
|
|
* @version 3.6.0
|
|
* @since 3.4.0
|
|
* @author Algoritmika Ltd.
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
if ( ! class_exists( 'WCJ_Shipping_Descriptions' ) ) :
|
|
|
|
class WCJ_Shipping_Descriptions extends WCJ_Module {
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @version 3.5.0
|
|
* @since 3.4.0
|
|
*/
|
|
function __construct() {
|
|
|
|
$this->id = 'shipping_description';
|
|
$this->short_desc = __( 'Shipping Descriptions', 'woocommerce-jetpack' );
|
|
$this->desc = __( 'Add descriptions to shipping methods on frontend.', 'woocommerce-jetpack' );
|
|
$this->link_slug = 'woocommerce-shipping-descriptions';
|
|
parent::__construct();
|
|
|
|
if ( $this->is_enabled() ) {
|
|
$this->shipping_descriptions_visibility = apply_filters( 'booster_option', 'both', get_option( 'wcj_shipping_descriptions_visibility', 'both' ) );
|
|
$this->shipping_descriptions_position = apply_filters( 'booster_option', 'after', get_option( 'wcj_shipping_descriptions_position', 'after' ) );
|
|
add_filter( 'woocommerce_cart_shipping_method_full_label', array( $this, 'shipping_description' ), PHP_INT_MAX, 2 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* shipping_description.
|
|
*
|
|
* @version 3.6.0
|
|
* @since 2.5.6
|
|
* @todo `shipping_descriptions_position` on per method basis
|
|
*/
|
|
function shipping_description( $label, $method ) {
|
|
if ( 'checkout_only' === $this->shipping_descriptions_visibility && is_cart() ) {
|
|
return $label;
|
|
}
|
|
if ( 'cart_only' === $this->shipping_descriptions_visibility && is_checkout() ) {
|
|
return $label;
|
|
}
|
|
$use_shipping_instances = ( 'yes' === get_option( 'wcj_shipping_descriptions_use_shipping_instance', 'no' ) );
|
|
$option_id = 'wcj_shipping_description_' . ( $use_shipping_instances ? 'instance_' . $method->instance_id : $method->method_id );
|
|
if ( '' != ( $desc = get_option( $option_id, '' ) ) ) {
|
|
switch ( $this->shipping_descriptions_position ) {
|
|
case 'before':
|
|
return $desc . $label;
|
|
case 'instead':
|
|
return $desc;
|
|
default: // 'after'
|
|
return $label . $desc;
|
|
}
|
|
} else {
|
|
return $label;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
return new WCJ_Shipping_Descriptions();
|