File size: 874 Bytes
e07769f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <?php
defined('_JEXEC') or die;
function modChrome_card($module, &$params, &$attribs) {
if ($module->content) {
echo '<div class="bg-white rounded-3xl p-6 shadow-sm border border-orange-100 mb-6">';
if ($module->showtitle) {
echo '<h3 class="text-lg font-bold text-gray-800 mb-4 flex items-center">';
echo '<span class="w-2 h-2 rounded-full bg-orange-400 mr-2"></span>';
echo $module->title;
echo '</h3>';
}
echo '<div class="text-gray-600">';
echo $module->content;
echo '</div>';
echo '</div>';
}
}
function modChrome_none($module, &$params, &$attribs) {
if ($module->content) {
if ($module->showtitle) {
echo '<h3 class="font-semibold text-gray-800 mb-2">' . $module->title . '</h3>';
}
echo $module->content;
}
} |