name = esc_html__( 'Settings', 'wpforms-lite' );
$this->slug = 'settings';
$this->icon = 'fa-sliders';
$this->order = 10;
$this->sidebar = true;
}
/**
* Outputs the Settings panel sidebar.
*
* @since 1.0.0
*/
public function panel_sidebar() {
// Sidebar contents are not valid unless we have a form.
if ( ! $this->form ) {
return;
}
$sections = array(
'general' => esc_html__( 'General', 'wpforms-lite' ),
'notifications' => esc_html__( 'Notifications', 'wpforms-lite' ),
'confirmation' => esc_html__( 'Confirmation', 'wpforms-lite' ),
);
$sections = apply_filters( 'wpforms_builder_settings_sections', $sections, $this->form_data );
foreach ( $sections as $slug => $section ) {
$this->panel_sidebar_section( $section, $slug );
}
}
/**
* Outputs the Settings panel primary content.
*
* @since 1.0.0
*/
public function panel_content() {
// Check if there is a form created.
if ( ! $this->form ) {
echo '
';
echo '
';
esc_html_e( 'General', 'wpforms-lite' );
echo '
';
wpforms_panel_field(
'text',
'settings',
'form_title',
$this->form_data,
esc_html__( 'Form Name', 'wpforms-lite' ),
array(
'default' => $this->form->post_title,
)
);
wpforms_panel_field(
'textarea',
'settings',
'form_desc',
$this->form_data,
esc_html__( 'Form Description', 'wpforms-lite' )
);
wpforms_panel_field(
'text',
'settings',
'form_class',
$this->form_data,
esc_html__( 'Form CSS Class', 'wpforms-lite' ),
array(
'tooltip' => esc_html__( 'Enter CSS class names for the form wrapper. Multiple class names should be separated with spaces.', 'wpforms-lite' ),
)
);
wpforms_panel_field(
'text',
'settings',
'submit_text',
$this->form_data,
esc_html__( 'Submit Button Text', 'wpforms-lite' ),
array(
'default' => esc_html__( 'Submit', 'wpforms-lite' ),
)
);
wpforms_panel_field(
'text',
'settings',
'submit_text_processing',
$this->form_data,
esc_html__( 'Submit Button Processing Text', 'wpforms-lite' ),
array(
'tooltip' => esc_html__( 'Enter the submit button text you would like the button display while the form submit is processing.', 'wpforms-lite' ),
)
);
wpforms_panel_field(
'text',
'settings',
'submit_class',
$this->form_data,
esc_html__( 'Submit Button CSS Class', 'wpforms-lite' ),
array(
'tooltip' => esc_html__( 'Enter CSS class names for the form submit button. Multiple names should be separated with spaces.', 'wpforms-lite' ),
)
);
wpforms_panel_field(
'checkbox',
'settings',
'honeypot',
$this->form_data,
esc_html__( 'Enable anti-spam honeypot', 'wpforms-lite' )
);
$recaptcha_key = wpforms_setting( 'recaptcha-site-key' );
$recaptcha_secret = wpforms_setting( 'recaptcha-secret-key' );
$recaptcha_type = wpforms_setting( 'recaptcha-type' );
if ( ! empty( $recaptcha_key ) && ! empty( $recaptcha_secret ) ) {
wpforms_panel_field(
'checkbox',
'settings',
'recaptcha',
$this->form_data,
'invisible' === $recaptcha_type ? esc_html__( 'Enable Google Invisible v2 reCAPTCHA', 'wpforms-lite' ) : esc_html__( 'Enable Google Checkbox v2 reCAPTCHA', 'wpforms-lite' )
);
}
wpforms_panel_field(
'checkbox',
'settings',
'dynamic_population',
$this->form_data,
esc_html__( 'Enable dynamic fields population', 'wpforms-lite' ),
array(
'tooltip' => '
' . esc_html__( 'How to use Dynamic Field Population', 'wpforms-lite' ) . '',
)
);
do_action( 'wpforms_form_settings_general', $this );
echo '
';
/*
* Notifications.
*/
echo '