27 lines
486 B
PHP
27 lines
486 B
PHP
<?php
|
|
|
|
namespace AutomateWoo;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* @class Variable_Order_Number
|
|
*/
|
|
class Variable_Order_Number extends Variable {
|
|
|
|
/**
|
|
* Load admin details.
|
|
*/
|
|
public function load_admin_details() {
|
|
$this->description = __( 'Displays the order number.', 'automatewoo' );
|
|
}
|
|
|
|
/**
|
|
* @param \WC_Order $order
|
|
* @param array $parameters
|
|
* @return string
|
|
*/
|
|
public function get_value( $order, $parameters ) {
|
|
return $order->get_order_number();
|
|
}
|
|
}
|