68 lines
1.9 KiB
PHP
68 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace MailPoet\Config\PopulatorData;
|
|
|
|
use MailPoet\Form\Util\Styles;
|
|
use MailPoet\Models\Form;
|
|
use MailPoet\Models\Segment;
|
|
use MailPoet\WP\Functions as WPFunctions;
|
|
|
|
class DefaultForm {
|
|
/** @var Styles */
|
|
private $formStyles;
|
|
|
|
public function __construct(Styles $formStyles) {
|
|
$this->formStyles = $formStyles;
|
|
}
|
|
|
|
public function getName() {
|
|
return WPFunctions::get()->_x('My First 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' => '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' => '3',
|
|
],
|
|
];
|
|
}
|
|
|
|
public function getSettings(Segment $defaultSegment) {
|
|
return [
|
|
'segments' => [$defaultSegment->id()],
|
|
'on_success' => 'message',
|
|
'success_message' => Form::getDefaultSuccessMessage(),
|
|
'success_page' => '5',
|
|
'segments_selected_by' => 'admin',
|
|
];
|
|
}
|
|
|
|
public function getStyles() {
|
|
return $this->formStyles->getDefaultCustomStyles();
|
|
}
|
|
}
|