block.php 972 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /*
  3. * Name: Html
  4. * Section: content
  5. * Description: Free HTML block
  6. *
  7. */
  8. /* @var $options array */
  9. /* @var $wpdb wpdb */
  10. $default_options = array(
  11. 'html'=>'<p>This is a piece of nice html code. You can use any tag, but be aware that email readers do not render everything.<p>',
  12. 'block_padding_left' => 15,
  13. 'block_padding_right' => 15,
  14. 'block_background' => '#ffffff',
  15. 'font_family' => 'Helvetica, Arial, sans-serif',
  16. 'font_size' => 16
  17. );
  18. $options = array_merge($default_options, $options);
  19. ?>
  20. <style>
  21. .html-td {
  22. font-family: <?php echo $options['font_family']?>;
  23. font-size: <?php echo $options['font_size']?>px;
  24. color: <?php echo $options['font_color']?>;
  25. }
  26. </style>
  27. <table width="100%" border="0" cellpadding="0" align="center" cellspacing="0">
  28. <tr>
  29. <td width="100%" valign="top" align="center" class="html-td">
  30. <?php echo $options['html'] ?>
  31. </td>
  32. </tr>
  33. </table>