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

35 lines
579 B
PHP

<?php
namespace AutomateWoo\Variables;
use AutomateWoo\Variable;
use WC_Booking;
defined( 'ABSPATH' ) || exit;
/**
* Class BookingId
*
* @since 5.3.0
*/
class BookingId extends Variable {
/**
* Load admin details.
*/
public function load_admin_details() {
$this->description = __( "Displays the booking's unique ID.", 'automatewoo' );
}
/**
* Get variable value.
*
* @param WC_Booking $booking
* @param array $parameters
*
* @return string
*/
public function get_value( $booking, $parameters ) {
return (string) $booking->get_id();
}
}