HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/root/proc/self/cwd/pm/app/Views/clients/clients_dropdown_of_this_client_contact.php
<li class="nav-item dropdown hidden-xs">
    <?php
    if ($show_icon) {
        $icon = "<i data-feather='crosshair' class='icon-16 me-2'></i>";
    } else {
        $icon = "";
    }
    ?>
    <?php echo js_anchor($login_user_company_name . " <i data-feather='chevron-down' class='icon'></i>", array("class" => "nav-link dropdown-toggle", "data-bs-toggle" => "dropdown")); ?>

    <ul class="dropdown-menu dropdown-menu-start">
        <li>
            <?php
            foreach ($clients as $client) {
                echo anchor(get_uri("clients/switch_account/$client->user_id"), $icon . $client->company_name, array("class" => "dropdown-item clearfix"));
            }
            ?>
        </li>
    </ul>
</li>
<?php if ($show_icon) { ?>
    <li class="dropdown-divider"></li>
<?php } ?>