WPCF7_WelcomePanelColumn_Integration::contentprotectedCF7 1.0

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

Хуков нет.

Возвращает

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

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

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

Код WPCF7_WelcomePanelColumn_Integration::content() CF7 6.1.4

protected function content() {
	return array(
		sprintf(
			/* translators: %s: URL to support page about the Brevo integration */
			__( 'Your contact forms will become more powerful and versatile by integrating them with external APIs. With CRM and email marketing services, you can build your own contact lists (<a href="%s">Brevo</a>).', 'contact-form-7' ),
			__( 'https://contactform7.com/sendinblue-integration/', 'contact-form-7' )
		),
		sprintf(
			/* translators: 1: URL to support page about Cloudflare Turnstile, 2: Stripe */
			__( 'With help from cloud-based machine learning, anti-spam services will protect your forms (<a href="%1$s">Cloudflare Turnstile</a>). Even payment services are natively supported (<a href="%2$s">Stripe</a>).', 'contact-form-7' ),
			__( 'https://contactform7.com/turnstile-integration/', 'contact-form-7' ),
			__( 'https://contactform7.com/stripe-integration/', 'contact-form-7' )
		),
	);
}