sidebar.php 781 B

1234567891011121314151617181920212223242526
  1. <?php
  2. function echo_sidebar ($image, $text, $links = null) {
  3. echo "<div class=\"sidebar\">";
  4. if (isset($image)) {
  5. $image = get_placeholder() ?: $image;
  6. echo "<a href=\"" . convert_bandcamp_link(resize_link($image, 0)) . "\">";
  7. echo "<img src=\"" . convert_bandcamp_link($image) . "\">";
  8. echo "</a>";
  9. };
  10. if (!empty($text)) echo "<p>" . nl2br(htmlspecialchars(trim($text))) . "</p>";
  11. if ($links && $links->count()) {
  12. echo "<p>";
  13. foreach ($links as $index => $link) {
  14. echo "<a href=\"" . convert_bandcamp_link($link->getAttribute("href")) . "\">" . htmlspecialchars($link->textContent) . "</a>";
  15. if ($index !== count($links) - 1) echo "<br>";
  16. };
  17. echo "</p>";
  18. };
  19. echo "</div>";
  20. };
  21. ?>