Automattic\WooCommerce\Internal\StockNotifications

Notification::set_date_notifiedpublicWC 1.0

Set the date notified.

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

Хуков нет.

Возвращает

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

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

$Notification = new Notification();
$Notification->set_date_notified( $date_notified );
$date_notified(строка|int) (обязательный)
Date notified.

Код Notification::set_date_notified() WC 10.5.2

public function set_date_notified( $date_notified ) {
	$this->set_date_prop( 'date_notified', $date_notified );
}