| Current Path : /home/p/o/n/poneycluc/www/plugins/system/t4/admin/layouts/field/ |
| Current File : /home/p/o/n/poneycluc/www/plugins/system/t4/admin/layouts/field/currentstyle.php |
<?php
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
$content = $displayData['data'];
$cid = $displayData['cid'];
if (!$content) return '';
$attrDrop = 'data-toggle="dropdown"';
if(version_compare(JVERSION, '4','ge')){
$attrDrop = 'data-bs-toggle="dropdown"';
}
?>
<span class="dropdown-toggle" type="button" <?php echo $attrDrop;?>>
<i class="fal fa-angle-down"></i>
</span>
<div class="dropdown-menu">
<span class="dropdown-title"><?php echo Text::_("T4_ADMIN_SWITCH_STYLE"); ?></span>
<ul>
<?php foreach ($content as $temp): ?>
<?php
$images = '';
$cls = [];
if ($cid == $temp->value) $cls[] = 'current';
// if (T4AMIN_DEFAULT_ID == $temp->value) $cls[] = 'master';
if ($temp->home == 1) $cls[] = 'master';
if($temp->home && $temp->image) $images = HTMLHelper::_('image', 'mod_languages/' . $temp->image . '.gif', '', null, true);
$cls = count($cls) ? ' class="' . implode(' ', $cls) . '"' : '';
?>
<li<?php echo $cls ?>>
<?php if ($cid == $temp->value): ?>
<span><?php echo $temp->title; ?></span><?php echo $images;?>
<?php else: ?>
<a href='index.php?option=com_templates&task=style.edit&id=<?php echo $temp->value; ?>'>
<span><?php echo $temp->title; ?></span><?php echo $images;?>
</a>
<?php endif ?>
</li>
<?php endforeach ?>
</ul>
</div>