You appear to be a bot. Output may be restricted
Description
Find notes that have not been actioned.
Usage
$bool = CouponPageMoved::has_unactioned_note();
Parameters
Returns
bool
Source
File name: woocommerce/packages/woocommerce-admin/src/Notes/CouponPageMoved.php
Lines:
1 to 11 of 11
protected static function has_unactioned_note() { $notes = self::get_data_store()->get_notes( [ 'name' => [ self::NOTE_NAME ], 'status' => [ 'unactioned' ], 'is_deleted' => false, ] ); return ! empty( $notes ); }