Automattic\WooCommerce\Admin\Notes
Note::get_date_reminder() public WC 1.0
Get date on which user should be reminded of the note (if any).
{} Это метод класса: Note{}
Хуков нет.
Возвращает
WC_DateTime/NULL. object if the date is set or null if there is no date.
Использование
$Note = new Note(); $Note->get_date_reminder( $context );
- $context(строка)
- What the value is for. Valid values are 'view' and 'edit'.
Код Note::get_date_reminder() Note::get date reminder WC 5.0.0
public function get_date_reminder( $context = 'view' ) {
return $this->get_prop( 'date_reminder', $context );
}