43 lines
904 B
PHP
43 lines
904 B
PHP
<?php
|
|
|
|
namespace MailPoet\Form\Block;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
class Text extends Base {
|
|
|
|
static function render($block) {
|
|
$type = 'text';
|
|
$automation_id = ' ';
|
|
if($block['id'] === 'email') {
|
|
$type = 'email';
|
|
$automation_id = 'data-automation-id="form_email" ';
|
|
}
|
|
|
|
$html = '<p class="mailpoet_paragraph">';
|
|
|
|
$html .= static::renderLabel($block);
|
|
|
|
$html .= '<input type="' . $type . '" class="mailpoet_text" ';
|
|
|
|
$html .= 'name="data[' . static::getFieldName($block) . ']" ';
|
|
|
|
$html .= 'title="' . static::getFieldLabel($block) . '" ';
|
|
|
|
$html .= 'value="' . static::getFieldValue($block) . '" ';
|
|
|
|
$html .= $automation_id;
|
|
|
|
$html .= static::renderInputPlaceholder($block);
|
|
|
|
$html .= static::getInputValidation($block);
|
|
|
|
$html .= static::getInputModifiers($block);
|
|
|
|
$html .= '/>';
|
|
|
|
$html .= '</p>';
|
|
|
|
return $html;
|
|
}
|
|
} |