Files
piratepoet/lib/Newsletter/Renderer/Blocks/Spacer.php
2016-05-18 10:00:38 -04:00

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;
}
}