27 lines
661 B
PHP
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>";
|
|
}
|
|
?>
|