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