Passed
Push — master ( 44e0bf...944816 )
by Warwick
06:56
created

lsx_wc_delivery_details_args()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php 
2
/**
3
 * WooCommerce Addons filters and functions
4
 *
5
 * @package    lsx
6
 * @subpackage woocommerce
7
 */
8
9
/**
10
 * WooCommerce Order Delivery Date
11
 */
12
if ( function_exists( 'wc_od_get_delivery_date_field_args' ) ) {
13
	/**
14
	 * Change the arguments for the checkout delivery date field.
15
	 *
16
	 * @package    lsx
17
	 * @subpackage woocommerce
18
	 * @param      $args array
19
	 * @return     array
20
	 */
21
	function lsx_wc_delivery_date_args( $args = array(), $context ) {
22
		if ( 'checkout' === $context ) {
23
			$args['label'] = _x( 'Date', 'Delivery date checkout field label', 'lsx' );
24
		}
25
		return $args;
26
	}
27
	add_action( 'wc_od_delivery_date_field_args', 'lsx_wc_delivery_date_args', 10, 2 );
28
}
29
30
if ( function_exists( 'wc_od_order_delivery_details_args' ) ) {
31
	/**
32
	 * Change the title of the shipping and delivery title.
33
	 *
34
	 * @package    lsx
35
	 * @subpackage woocommerce
36
	 * @param      $args array
37
	 * @return     array
38
	 */
39
	function lsx_wc_delivery_details_args( $args = array() ) {
40
		$args['title'] = _x( 'Collection or Delivery Time-slot', 'Delivery date title on checkout', 'lsx' );
41
		return $args;
42
	}
43
	add_action( 'wc_od_order_delivery_details_args', 'lsx_wc_delivery_details_args', 10, 1 );
44
}
45