Automattic\WooCommerce\Internal\StockNotifications

Notification::set_statuspublicWC 1.0

Set the status.

Метод класса: Notification{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Notification = new Notification();
$Notification->set_status( $status );
$status(строка) (обязательный)
Status.

Код Notification::set_status() WC 10.5.2

public function set_status( string $status ) {

	if ( ! in_array( $status, NotificationStatus::get_valid_statuses(), true ) ) {
		// Default to pending.
		$status = NotificationStatus::PENDING;
	}

	$this->set_prop( 'status', $status );
}