| Server IP : 87.229.120.60 / Your IP : 216.73.216.86 Web Server : Apache System : Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64 User : server ( 1002) PHP Version : 8.3.20 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/faktorteam/www/wp-content/plugins/wpforms-lite/includes/templates/ |
Upload File : |
<?php
/**
* Scribe to Email list form template.
*
* @since 1.0.0
*/
class WPForms_Template_Subscribe extends WPForms_Template {
/**
* Primary class constructor.
*
* @since 1.0.0
*/
public function init() {
$this->name = esc_html__( 'Newsletter Signup Form', 'wpforms-lite' );
$this->slug = 'subscribe';
$this->description = esc_html__( 'Add subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.', 'wpforms-lite' );
$this->includes = '';
$this->icon = '';
$this->core = true;
$this->modal = array(
'title' => esc_html__( 'Don't Forget', 'wpforms-lite' ),
'message' => esc_html__( 'Click the marketing tab to configure your newsletter service provider', 'wpforms-lite' ),
);
$this->data = array(
'field_id' => '2',
'fields' => array(
'0' => array(
'id' => '0',
'type' => 'name',
'label' => esc_html__( 'Name', 'wpforms-lite' ),
'required' => '1',
'size' => 'medium',
),
'1' => array(
'id' => '1',
'type' => 'email',
'label' => esc_html__( 'Email', 'wpforms-lite' ),
'required' => '1',
'size' => 'medium',
),
),
'settings' => array(
'antispam' => '1',
'confirmation_message_scroll' => '1',
'submit_text_processing' => esc_html__( 'Sending...', 'wpforms-lite' ),
),
'meta' => array(
'template' => $this->slug,
),
);
}
/**
* Conditional to determine if the template informational modal screens
* should display.
*
* @since 1.0.0
*
* @param array $form_data Form data and settings.
*
* @return bool
*/
public function template_modal_conditional( $form_data ) {
// If we do not have provider data, then we can assume a provider
// method has not yet been configured, so we display the modal to
// remind the user they need to set it up for the form to work
// correctly.
if ( empty( $form_data['providers'] ) ) {
return true;
}
return false;
}
}
new WPForms_Template_Subscribe();