Automattic\WooCommerce\Admin\Notes
Note::set_date_reminder
Set date admin should be reminded of note. NULL IS allowed
Метод класса: Note{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Note = new Note(); $Note->set_date_reminder( $date );
- $date(строка|int|null) (обязательный)
- UTC timestamp, or ISO 8601 DateTime. If the DateTime string has no timezone or offset, WordPress site timezone will be assumed. Null if there is no date.
Код Note::set_date_reminder() Note::set date reminder WC 10.5.2
public function set_date_reminder( $date ) {
if ( is_string( $date ) && ! is_numeric( $date ) ) {
$date = wc_string_to_timestamp( $date );
}
$this->set_date_prop( 'date_reminder', $date );
}