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: /home/slfopp7cb1df/public_html/sitepacket.com/system/app/Views/leads/lead_custom_fields_info.php
<?php
$fields = "";
if (count($custom_fields_list)) {
    foreach ($custom_fields_list as $data) {
        if ($data->value) {
            $fields .= "<li class='list-group-item first-child-no-top-style'><div class='d-flex'><span class='mr5'>"
                . view("custom_fields/render_icon", array("field_type" => $data->field_type)) . "</span><span class='flex-fill'><strong>$data->title: </strong>"
                . view("custom_fields/output_" . $data->field_type, array("value" => $data->value))
                . "</span></div></li>";
        }
    }
}

if ($fields) {
?>
    <div class="card">
        <div class="card-body">
            <ul class="list-group info-list pt0">
                <?php echo $fields; ?>
            </ul>
        </div>
    </div>
<?php } ?>