35 lines
675 B
PHP
35 lines
675 B
PHP
<?php
|
|
|
|
namespace AutomateWoo;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Variable_Order_Shipping_First_Name class.
|
|
*
|
|
* @since 4.4.2
|
|
*
|
|
* @class Variable_Order_Shipping_First_Name
|
|
*/
|
|
class Variable_Order_Shipping_First_Name extends Variable {
|
|
|
|
/**
|
|
* Load description for variable in admin screen.
|
|
*/
|
|
public function load_admin_details() {
|
|
$this->description = __( 'Displays the shipping first name of the order.', 'automatewoo' );
|
|
}
|
|
|
|
/**
|
|
* Method: get_value() - returns the shipping address's first name.
|
|
*
|
|
* @param \WC_Order $order
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_value( $order ) {
|
|
return $order->get_shipping_first_name();
|
|
}
|
|
}
|