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/cwd/pm/app/Views/dashboards/custom_dashboards/extra_data/custom_widget.php
<?php
$border_class = "";
if ($widget_info->show_border) {
    $border_class = "bg-white p15";
}
?>

<div class="custom-widget mb20">

    <?php if ($widget_info->show_title) { ?>
        <div class="custom-widget-title">
            <?php echo $widget_info->title; ?>
        </div>
    <?php } ?>

    <div class="<?php echo $border_class ?>"> 
        <?php echo process_images_from_content($widget_info->content); ?>
    </div>

</div>