74 lines
2.2 KiB
PHP
74 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace MailPoet\Config\PopulatorData;
|
|
|
|
use MailPoet\Form\Util\Styles;
|
|
use MailPoet\Models\Segment;
|
|
use MailPoet\WP\Functions as WPFunctions;
|
|
|
|
class DefaultForm {
|
|
|
|
public function getName() {
|
|
return WPFunctions::get()->x('A GDPR friendly form', 'default name of form (GDPR friendly) to capture emails', 'mailpoet');
|
|
}
|
|
|
|
public function getBody() {
|
|
return [
|
|
[
|
|
'type' => 'text',
|
|
'name' => WPFunctions::get()->x('First name', 'Form label', 'mailpoet'),
|
|
'id' => 'first_name',
|
|
'unique' => '1',
|
|
'static' => '0',
|
|
'params' => ['label' => WPFunctions::get()->x('First name', 'Form label', 'mailpoet')],
|
|
'position' => '1',
|
|
],
|
|
[
|
|
'type' => 'text',
|
|
'name' => WPFunctions::get()->x('Email', 'Form label', 'mailpoet'),
|
|
'id' => 'email',
|
|
'unique' => '0',
|
|
'static' => '1',
|
|
'params' => ['label' => WPFunctions::get()->x('Email', 'Form label', 'mailpoet'), 'required' => 'true'],
|
|
'position' => '2',
|
|
],
|
|
[
|
|
'type' => 'html',
|
|
'name' => WPFunctions::get()->x('Custom text or HTML', 'Form label', 'mailpoet'),
|
|
'id' => 'html',
|
|
'unique' => '0',
|
|
'static' => '0',
|
|
'params' => [
|
|
'text' => WPFunctions::get()->__('We keep your data private and share your data only with third parties that make this service possible. <a href="">Read our Privacy Policy.</a>', 'mailpoet'),
|
|
'nl2br' => '0',
|
|
],
|
|
'position' => '3',
|
|
],
|
|
[
|
|
'type' => 'submit',
|
|
'name' => WPFunctions::get()->x('Submit', 'Form label', 'mailpoet'),
|
|
'id' => 'submit',
|
|
'unique' => '0',
|
|
'static' => '1',
|
|
'params' => ['label' => WPFunctions::get()->x('Subscribe!', 'Form label', 'mailpoet')],
|
|
'position' => '4',
|
|
],
|
|
];
|
|
}
|
|
|
|
public function getSettings(Segment $default_segment) {
|
|
return [
|
|
'segments' => [$default_segment->id()],
|
|
'on_success' => 'message',
|
|
'success_message' => WPFunctions::get()->__('Check your inbox or spam folder to confirm your subscription.', 'mailpoet'),
|
|
'success_page' => '5',
|
|
'segments_selected_by' => 'admin',
|
|
];
|
|
}
|
|
|
|
public function getStyles() {
|
|
return Styles::$default_styles;
|
|
}
|
|
|
|
}
|