sidebar.php 552 B

12345678910111213141516171819
  1. <?php
  2. function echo_sidebar ($image, $text, $links = null) {
  3. echo "<div class=\"sidebar\">";
  4. if (isset($image)) echo "<img src=\"" . convert_link($image) . "\">";
  5. if (!empty($text)) echo "<p>" . nl2br(trim($text)) . "</p>";
  6. if ($links) {
  7. echo "<p>";
  8. foreach ($links as $index => $link) {
  9. echo "<a href=\"" . convert_link($link->attr("href")) . "\">" . htmlspecialchars($link->text()) . "</a>";
  10. if ($index !== count($links) - 1) echo "<br>";
  11. };
  12. echo "</p>";
  13. };
  14. echo "</div>";
  15. };
  16. ?>