block.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /*
  3. * Name: Footer
  4. * Section: footer
  5. * Description: View online ad profile links
  6. */
  7. $default_options = array(
  8. 'view' => 'View online',
  9. 'profile' => 'Modify your subscription',
  10. 'block_background' => '#ffffff',
  11. 'font_family' => $font_family,
  12. 'font_size' => 13,
  13. 'font_color' => '#444444',
  14. 'font_weight' => 'normal',
  15. 'block_padding_left' => 15,
  16. 'block_padding_right' => 15,
  17. 'block_padding_bottom' => 15,
  18. 'block_padding_top' => 15
  19. );
  20. $options = array_merge($default_options, $options);
  21. ?>
  22. <style>
  23. .footer-text {
  24. font-size: <?php echo $options['font_size'] ?>px;
  25. font-family: <?php echo $options['font_family'] ?>;
  26. font-weight: <?php echo $options['font_weight'] ?>;
  27. color: <?php echo $options['font_color'] ?>;
  28. text-decoration: none;
  29. }
  30. </style>
  31. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  32. <tr>
  33. <td align="center">
  34. <a class="footer-text" href="{profile_url}"><?php echo $options['profile'] ?></a>
  35. <span class="footer-text">&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;</span>
  36. <a class="footer-text" href="{email_url}"><?php echo $options['view'] ?></a>
  37. </td>
  38. </tr>
  39. </table>