WPCF7_WelcomePanelColumn_Donation::content()protectedCF7 1.0

Метод класса: WPCF7_WelcomePanelColumn_Donation{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->content();

Код WPCF7_WelcomePanelColumn_Donation::content() CF7 5.9.3

protected function content() {
	return array(
		esc_html( __( "It is hard to continue development and support for this plugin without contributions from users like you.", 'contact-form-7' ) ),
		sprintf(
			/* translators: %s: link labeled 'making a donation' */
			esc_html( __( 'If you enjoy using Contact Form 7 and find it useful, please consider %s.', 'contact-form-7' ) ),
			wpcf7_link(
				__( 'https://contactform7.com/donate/', 'contact-form-7' ),
				__( 'making a donation', 'contact-form-7' )
			)
		),
		esc_html( __( "Your donation will help encourage and support the plugin’s continued development and better user support.", 'contact-form-7' ) ),
	);
}