Files
piratepoet/lib/Form/Block/Submit.php
2016-10-06 12:54:04 +02:00

19 lines
323 B
PHP

<?php
namespace MailPoet\Form\Block;
if(!defined('ABSPATH')) exit;
class Submit extends Base {
static function render($block) {
$html = '';
$html .= '<p class="mailpoet_submit"><input type="submit" ';
$html .= 'value="'.static::getFieldLabel($block).'" ';
$html .= '/></p>';
return $html;
}
}