WPCF7_WelcomePanelColumn_Donation::contentprotectedCF7 1.0

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

Хуков нет.

Возвращает

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

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

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

Код WPCF7_WelcomePanelColumn_Donation::content() CF7 6.1.5

protected function content() {
	return array(
		__( 'It is hard to continue to maintain this plugin without support from users like you.', 'contact-form-7' ),
		sprintf(
			/* translators: %s: URL to support page about ways to contribute */
			__( 'There are several ways for you to <a href="%s">contribute to the project</a>: 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' ),
			__( 'https://contactform7.com/contributing/', 'contact-form-7' )
		),
	);
}