Automattic\WooCommerce\Internal\Admin\Notes

UnsecuredReportFiles::get_note()public staticWC 1.0

Get the note.

Method of the class: UnsecuredReportFiles{}

No Hooks.

Return

Note|null.

Usage

$result = UnsecuredReportFiles::get_note();

UnsecuredReportFiles::get_note() code WC 8.6.1

public static function get_note() {
	$note = new Note();
	$note->set_title( __( 'Potentially unsecured files were found in your uploads directory', 'woocommerce' ) );
	$note->set_content(
		sprintf(
			/* translators: 1: opening analytics docs link tag. 2: closing link tag */
			__( 'Files that may contain %1$sstore analytics%2$s reports were found in your uploads directory - we recommend assessing and deleting any such files.', 'woocommerce' ),
			'<a href="https://woo.com/document/woocommerce-analytics/" target="_blank">',
			'</a>'
		)
	);
	$note->set_content_data( (object) array() );
	$note->set_type( Note::E_WC_ADMIN_NOTE_ERROR );
	$note->set_name( self::NOTE_NAME );
	$note->set_source( 'woocommerce-admin' );
	$note->add_action(
		'learn-more',
		__( 'Learn more', 'woocommerce' ),
		'https://developer.woo.com/2021/09/22/important-security-patch-released-in-woocommerce/',
		Note::E_WC_ADMIN_NOTE_UNACTIONED,
		true
	);
	$note->add_action(
		'dismiss',
		__( 'Dismiss', 'woocommerce' ),
		wc_admin_url(),
		Note::E_WC_ADMIN_NOTE_ACTIONED,
		false
	);

	return $note;
}