1
0
Files
cesium.one/php/functions.php
2026-05-11 02:06:36 -04:00

27 lines
661 B
PHP

<?php
function buildLink($type, $title, $color, $text, $url) {
$opacity = $url ? "" : "0.9";
echo "<div class=$type style=\"background-color: $color; opacity: $opacity;\">";
echo "<h3>$title</h3>";
switch ($type) {
case "link":
$fontsize = "0.9em";
break;
case "contact":
$fontsize = (strlen($text) > 15) ? "0.8em" : "1em";
break;
}
echo "<p style=\"font-size: $fontsize;\">$text</p>";
if ($url) {
echo "<a title=\"$title\" href=\"$url\"></a>";
}
echo "</div>";
}
?>