WPCF7_Sendinblue::display()
Метод класса: WPCF7_Sendinblue{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WPCF7_Sendinblue = new WPCF7_Sendinblue(); $WPCF7_Sendinblue->display( $action );
- $action **
- -
По умолчанию: ''
Код WPCF7_Sendinblue::display() WPCF7 Sendinblue::display CF7 5.9.8
public function display( $action = '' ) { echo sprintf( '<p>%s</p>', esc_html( __( "Store and organize your contacts while protecting user privacy on Brevo, the leading CRM & email marketing platform in Europe. Brevo offers unlimited contacts and advanced marketing features.", 'contact-form-7' ) ) ); echo sprintf( '<p><strong>%s</strong></p>', wpcf7_link( __( 'https://contactform7.com/sendinblue-integration/', 'contact-form-7' ), __( 'Brevo integration', 'contact-form-7' ) ) ); if ( $this->is_active() ) { echo sprintf( '<p class="dashicons-before dashicons-yes">%s</p>', esc_html( __( "Brevo is active on this site.", 'contact-form-7' ) ) ); } if ( 'setup' == $action ) { $this->display_setup(); } else { echo sprintf( '<p><a href="%1$s" class="button">%2$s</a></p>', esc_url( $this->menu_page_url( 'action=setup' ) ), esc_html( __( 'Setup integration', 'contact-form-7' ) ) ); } }