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/subscriptions/subscription_top_bar.php
<div id="subscription-top-bar" class="details-view-status-section mb20">
    <div class="page-title no-bg clearfix mb5 no-border">
        <h1 class="pl0">
            <span><i data-feather="repeat" class='icon'></i></span>
            <?php echo get_subscription_id($subscription_info->id) . ": " . $subscription_info->title; ?>
        </h1>
    </div>

    <?php
    echo $subscription_status_label;

    $subscription_labels = make_labels_view_data($subscription_info->labels_list, false, true, "rounded-pill");

    $labels = $can_edit_subscriptions ? "<span class='text-off ml10 mr10'>" . app_lang("add") . " " . app_lang("label") . "<span>" : "";

    if (isset($subscription_labels) && $subscription_labels) {
        $labels = $subscription_labels;
    }

    if ($can_edit_subscriptions) {
        echo js_anchor($labels, array(
            'title' => "",
            "class" => "mr5",
            "data-id" => $subscription_info->id,
            "data-value" => $subscription_info->labels,
            "data-act" => "subscription-modifier",
            "data-modifier-group" => "subscription_info",
            "data-field" => "labels",
            "data-multiple-tags" => "1",
            "data-action-url" => get_uri("subscriptions/update_subscription_info/$subscription_info->id/labels")
        ));
    } else {
        echo $labels;
    }

    if ($subscription_info->status == "active" && $subscription_info->next_recurring_date) {
        echo "<span class='badge rounded-pill large text-default b-a' title='" . app_lang("next_billing_date") . "'> <i data-feather='refresh-cw' class='icon-14 text-off '></i>" . format_to_date($subscription_info->next_recurring_date, false) . "</span>";
    }
    ?>
</div>