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/www/sitepacket.com/system/app/Views/proposals/proposal_custom_fields_info.php
<?php
$fields = "";
if (isset($proposal_info->custom_fields) && $proposal_info->custom_fields) {
    foreach ($proposal_info->custom_fields as $field) {
        if ($field->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" => $field->custom_field_type)) . "</span><span class='flex-fill'><strong>$field->custom_field_title: </strong>"
                . view("custom_fields/output_" . $field->custom_field_type, array("value" => $field->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 } ?>