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/estimates/signer_info.php
<?php
$signer_info = @unserialize($estimate_info->meta_data);
if (!($signer_info && is_array($signer_info))) {
    $signer_info = array();
}
?>
<?php if ($estimate_status === "accepted" && ($signer_info || $estimate_info->accepted_by)) { ?>
    <div class="card">
        <div class="card-header fw-bold">
            <i data-feather="edit-3" class="icon-16"></i> &nbsp;<?php echo app_lang("signer_info"); ?>
        </div>

        <div class="p15">
            <div><strong><?php echo app_lang("name"); ?>: </strong><?php echo $estimate_info->accepted_by ? get_client_contact_profile_link($estimate_info->accepted_by, $estimate_info->signer_name) : get_array_value($signer_info, "name"); ?></div>
            <div><strong><?php echo app_lang("email"); ?>: </strong><?php echo $estimate_info->signer_email ? $estimate_info->signer_email : get_array_value($signer_info, "email"); ?></div>
            <?php if (get_array_value($signer_info, "signed_date")) { ?>
                <div><strong><?php echo app_lang("signed_date"); ?>: </strong><?php echo format_to_relative_time(get_array_value($signer_info, "signed_date")); ?></div>
            <?php } ?>

            <?php
            if (get_array_value($signer_info, "signature")) {
                $signature_file = @unserialize(get_array_value($signer_info, "signature"));
                $signature_file_name = get_array_value($signature_file, "file_name");
                $signature_file = get_source_url_of_file($signature_file, get_setting("timeline_file_path"), "thumbnail");
            ?>
                <div><strong><?php echo app_lang("signature"); ?>: </strong><br /><img class="signature-image" src="<?php echo $signature_file; ?>" alt="<?php echo $signature_file_name; ?>" /></div>
            <?php } ?>
        </div>
    </div>
<?php } ?>