%PDF- %PDF-
Direktori : /var/www/pn/beta/64801_wp-content/plugins/mailpoet/lib/Newsletter/Renderer/Blocks/ |
Current File : /var/www/pn/beta/64801_wp-content/plugins/mailpoet/lib/Newsletter/Renderer/Blocks/Spacer.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; } }