Files
piratepoet/lib/Form/Block/Submit.php
Ján Mikláš 3ee58aea10 Add space between if and ‘(‘
[MAILPOET-1791]
2019-02-13 08:26:27 -05:00

26 lines
608 B
PHP

<?php
namespace MailPoet\Form\Block;
if (!defined('ABSPATH')) exit;
class Submit extends Base {
static function render($block) {
$html = '';
$html .= '<p class="mailpoet_paragraph"><input type="submit" class="mailpoet_submit" ';
$html .= 'value="'.static::getFieldLabel($block).'" ';
$html .= 'data-automation-id="subscribe-submit-button" ';
$html .= '/>';
$html .= '<span class="mailpoet_form_loading"><span class="mailpoet_bounce1"></span><span class="mailpoet_bounce2"></span><span class="mailpoet_bounce3"></span></span>';
$html .= '</p>';
return $html;
}
}