芝麻web文件管理V1.00
编辑当前文件:/home/ezdajrnh/public_html/wp-content/plugins/google-listings-and-ads/src/Notes/AbstractNote.php
get_name() ); } } /** * Get note data store. * * @see \Automattic\WooCommerce\Admin\Notes\DataStore for relevant data store. * * @return WC_Data_Store */ protected function get_data_store(): WC_Data_Store { return WC_Data_Store::load( 'admin-note' ); } /** * Check if the note has already been added. * * @return bool */ protected function has_been_added(): bool { $note_ids = $this->get_data_store()->get_notes_with_name( $this->get_name() ); return ! empty( $note_ids ); } }