HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/apklausos/application/extensions/SideBarWidget/views/side_bar.php
<?php
/**
 * Renders the main view of the SideBarWidget
 * @var $icons array[] the icons to be displayed in the sidebar
 */

?>
<div class="sidebar">
    <div class="sidebar-icons">
        <?php foreach ($icons as $icon) : ?>
            <div class="sidebar-icon">
                <div data-bs-toggle="tooltip"
                     title="<?= $icon['title'] ?>"
                     data-bs-offset="0, 20"
                     data-bs-placement="right">
                    <a href="<?= $icon['url'] ?>"
                       target="<?= $icon['external'] ? '_blank' : '' ?>"
                       class="btn btn-g-800 btn-icon"
                        <?= $icon['selected'] ? 'selected' : '' ?>
                    >
                        <i class="<?php echo CHtml::encode($icon['ico']); ?>"></i>
                    </a>
                </div>
            </div>
        <?php endforeach; ?>
    </div>
    <?php /** here we could at the menu part of the sidebar */ ?>
</div>