16 lines
492 B
PHP
16 lines
492 B
PHP
<?php
|
|
namespace MailPoet\Newsletter\Renderer\Blocks;
|
|
|
|
class Spacer {
|
|
static function render($element) {
|
|
$height = (int)$element['styles']['block']['height'];
|
|
$background_color = $element['styles']['block']['backgroundColor'];
|
|
$template = '
|
|
<tr>
|
|
<td class="mailpoet_spacer" ' .
|
|
(($background_color !== 'transparent') ? 'bgcolor="' . $background_color . '" ' : ' ') .
|
|
'height="' . $height . '" valign="top"></td>
|
|
</tr>';
|
|
return $template;
|
|
}
|
|
} |