sidebar.php 555 B

1234567891011121314151617
  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->length) echo "<p>";
  7. foreach ($links as $index => $link) {
  8. echo "<a href=\"" . convert_link($link->attr("href")) . "\">" . htmlspecialchars($link->text()) . "</a>";
  9. if ($index !== count($links) - 1) echo "<br>";
  10. };
  11. if ($links->length) echo "</p>";
  12. echo "</div>";
  13. };
  14. ?>