Automattic\WooCommerce\Internal\StockNotifications
Notification::set_status
Set the status.
Метод класса: Notification{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Notification = new Notification(); $Notification->set_status( $status );
- $status(строка) (обязательный)
- Status.
Код Notification::set_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 );
}