automatewoo/includes/Variables/Order_Item_Meta.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

34 lines
764 B
PHP

<?php
namespace AutomateWoo;
defined( 'ABSPATH' ) || exit;
/**
* @class Variable_Order_Item_Meta
*/
class Variable_Order_Item_Meta extends Variable {
/**
* Load admin details.
*/
public function load_admin_details() {
$this->description = __( 'Can be used to display the value of an order item meta field.', 'automatewoo' );
$this->add_parameter_text_field( 'key', __( 'The key of the order item meta field.', 'automatewoo' ), true );
}
/**
* @param \WC_Order_Item_Product $item
* @param array $parameters
*
* @return string
*/
public function get_value( $item, $parameters ) {
if ( empty( $parameters['key'] ) ) {
return false;
}
return wc_get_order_item_meta( $item->get_id(), $parameters['key'] );
}
}