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/pm/app/Views/orders/order_status_bar.php
<div class="bg-white  p15 no-border m0 rounded-bottom">
    <span><?php echo app_lang("status") . ": " . js_anchor($order_info->order_status_title, array("style" => "background-color: $order_info->order_status_color", "class" => "badge", "data-id" => $order_info->id, "data-value" => $order_info->status_id, "data-act" => "update-order-status")); ?></span>

    <span class="ml15">
        <?php
        echo app_lang("client") . ": ";
        echo (anchor(get_uri("clients/view/" . $order_info->client_id), $order_info->company_name));
        ?>
    </span>
    <span class="ml15">
        <?php
        echo app_lang("created_by") . ": ";
        $created_by = $order_info->created_by_user;
        if ($order_info->created_by_user_type == "staff") {
            echo get_team_member_profile_link($order_info->created_by, $created_by);
        } else {
            echo get_client_contact_profile_link($order_info->created_by, $created_by);
        }
        ?>
    </span>
    <span class="ml15"><?php
        if ($order_info->project_id) {
            echo app_lang("project") . ": ";
            echo (anchor(get_uri("projects/view/" . $order_info->project_id), $order_info->project_title));
        }
        ?>
    </span>
</div>