WPCF7_WelcomePanelColumn_Donation::content()protectedCF7 1.0

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

Хуков нет.

Возвращает

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

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

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

Код WPCF7_WelcomePanelColumn_Donation::content() CF7 6.0.6

protected function content() {
	return array(
		esc_html( __( "It is hard to continue to maintain this plugin without support from users like you.", 'contact-form-7' ) ),
		sprintf(
			/* translators: %s: link labeled 'contribute to the project' */
			esc_html( __( 'There are several ways for you to %s: testing, coding, translating it into your local languages, helping other users, financial donations, etc, etc. We equally welcome you regardless of the way you contribute.', 'contact-form-7' ) ),
			wpcf7_link(
				__( 'https://contactform7.com/contributing/', 'contact-form-7' ),
				__( 'contribute to the project', 'contact-form-7' )
			)
		),
	);
}