Automattic\WooCommerce\Admin\Notes
Note::get_is_deleted() public WC 1.0
Get deleted status.
{} Это метод класса: Note{}
Хуков нет.
Возвращает
Массив.
Использование
$Note = new Note(); $Note->get_is_deleted( $context );
- $context(строка)
- What the value is for. Valid values are 'view' and 'edit'.
Код Note::get_is_deleted() Note::get is deleted WC 5.0.0
public function get_is_deleted( $context = 'view' ) {
return $this->get_prop( 'is_deleted', $context );
}