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

49 lines
1 KiB
PHP

<?php
namespace AutomateWoo\Async_Events;
defined( 'ABSPATH' ) || exit;
/**
* Class Membership_Status_Changed
*
* @since 4.8.0
* @package AutomateWoo
*/
class Membership_Status_Changed extends Abstract_Async_Event {
/**
* Init the event.
*/
public function init() {
add_action( 'wc_memberships_user_membership_status_changed', [ $this, 'schedule_event' ], 30, 3 );
}
/**
* Get the async event hook name.
*
* @since 5.2.0
*
* @return string
*/
public function get_hook_name(): string {
return 'automatewoo/membership_status_changed_async';
}
/**
* Schedule event.
*
* @param \WC_Memberships_User_Membership $membership The membership
* @param string $old_status Old status, without the wcm- prefix
* @param string $new_status New status, without the wcm- prefix
*/
public function schedule_event( $membership, $old_status, $new_status ) {
$this->create_async_event(
[
$membership->get_id(),
$old_status,
$new_status,
]
);
}
}