Automattic\WooCommerce\Admin\Notes
Note::get_is_deleted()
Get deleted status.
Method of the class: Note{}
No Hooks.
Return
true|false
.
Usage
$Note = new Note(); $Note->get_is_deleted( $context );
- $context(string)
- What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'
Note::get_is_deleted() Note::get is deleted code WC 9.7.1
public function get_is_deleted( $context = 'view' ) { return $this->get_prop( 'is_deleted', $context ); }