set_title(
sprintf(
/* translators: %s: WooPayments */
__( 'You’re now eligible to receive Instant Payouts with %s', 'woocommerce-payments' ),
'WooPayments'
)
);
$note->set_content(
WC_Payments_Utils::esc_interpolated_html(
sprintf(
/* translators: %s: WooPayments */
__( "Get immediate access to your funds when you need them – including nights, weekends, and holidays. With %s' Instant Payouts feature, you're able to transfer your earnings to a debit card within minutes.", 'woocommerce-payments' ),
'WooPayments'
),
[ 'a' => '' ]
)
);
$note->set_content_data( (object) [] );
$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
$note->set_name( self::NOTE_NAME );
$note->set_source( 'woocommerce-payments' );
$note->add_action(
self::NOTE_NAME,
__( 'Request an instant payout', 'woocommerce-payments' ),
'https://woocommerce.com/document/woopayments/payouts/instant-payouts/#request-an-instant-payout',
'unactioned',
true
);
return $note;
}
}