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/root/proc/self/cwd/pm/app/Views/dashboards/list/dashboards_list.php
<div id="js-dashboard-popup-list">
    <?php
    //default dashboard
    echo anchor(get_uri("dashboard/index/1"), "<i data-feather='monitor' class='icon-16 mr10'></i> " . app_lang("default_dashboard"), array("class" => "dropdown-item"));

    if (!(get_setting("disable_dashboard_customization_by_clients") && $login_user->user_type == "client")) {
        if (count($dashboards)) {
            echo "<div class='js-dashboard-list'>";

            foreach ($dashboards as $dashboard) {

                $icon = "monitor";
                $title = "<i style='color: " . $dashboard->color . "' data-feather='$icon' class='icon-16 mr10'></i> " . $dashboard->title;

                echo anchor(get_uri("dashboard/view/" . $dashboard->id), $title, array("class" => "dropdown-item js-dashboard-list", "data-value" => $dashboard->id, "data-id" => $dashboard->id, "data-sort" => $dashboard->new_sort));
            }

            echo "</div>";
        }

        echo modal_anchor(get_uri("dashboard/modal_form"), "<i data-feather='plus-circle' class='icon-16'></i> " . app_lang('add_new_dashboard'), array("class" => "dropdown-item text-center b-t", "title" => app_lang('add_new_dashboard')));
    }
    ?>
</div>

<script type="text/javascript">
    $(document).ready(function () {

<?php if (count($dashboards)) { ?>
            //init sortable to dashboard list
            var options = {
                animation: 150,
                chosenClass: "sortable-chosen",
                ghostClass: "sortable-ghost",
                onUpdate: function (e) {
                    //moved to the same column. save the dashboard position
                    saveDashboardPosition($(e.item));
                }
            };

            //make the widget rows sortable
            options.group = "js-dashboard-list";
            Sortable.create($(".js-dashboard-list")[0], options);

            //save dashboard position
            function saveDashboardPosition($item) {
                appLoader.show();

                var $prev = $item.prev(),
                        $next = $item.next(),
                        prevSort = 0, nextSort = 0, newSort = 0,
                        step = 100000, stepDiff = 500,
                        id = $item.attr("data-id");

                if ($prev && $prev.attr("data-sort")) {
                    prevSort = $prev.attr("data-sort") * 1;
                }

                if ($next && $next.attr("data-sort")) {
                    nextSort = $next.attr("data-sort") * 1;
                }


                if (!prevSort && nextSort) {
                    //item moved at the top
                    newSort = nextSort + stepDiff;

                } else if (!nextSort && prevSort) {
                    //item moved at the bottom
                    newSort = prevSort - step;

                } else if (prevSort && nextSort) {
                    //item moved inside two items
                    newSort = (prevSort + nextSort) / 2;

                } else if (!prevSort && !nextSort) {
                    //It's the first item of this column
                    newSort = step * 100; //set a big value for 1st item
                }

                $item.attr("data-sort", newSort);

                $.ajax({
                    url: '<?php echo_uri("dashboard/save_dashboard_sort") ?>',
                    type: "POST",
                    data: {id: id, sort: newSort},
                    success: function () {
                        appLoader.hide();
                    }
                });
            }

<?php } ?>

        //don't apply scrollbar for mobile devices
        if ($(window).width() > 640) {
            if ($('#js-dashboard-popup-list').height() >= 400) {
                initScrollbar('#js-dashboard-popup-list', {
                    setHeight: 400
                });
            } else {
                $('#js-dashboard-popup-list').css({"overflow-y": "auto"});
            }
        }

    });
</script>