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/conradinvestmentgroup.com/pm/app/Views/tickets/view.php
<?php
$user_id = $login_user->id;
?>

<?php
echo view("includes/back_button", array("button_url" => "", "button_text" => app_lang("tickets")));
?>

<div class="page-content ticket-details-view xs-full-width clearfix">
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-12">
                <div id="ticket-details-top-bar"><?php echo view("tickets/top_bar"); ?></div>
                <?php echo view("tickets/details"); ?>
            </div>
        </div>
    </div>
</div>

<textarea id="signature-text" class="hide"><?php echo get_setting('user_' . $user_id . '_signature'); ?></textarea>

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

        appContentBuilder.init("<?php echo get_uri('tickets/view/' . $ticket_info->id); ?>", {
            id: "ticket-details-page-builder",
            data: {
                view_type: "ticket_meta"
            },
            reloadHooks: [{
                    type: "app_form",
                    id: "ticket-form"
                },
                {
                    type: "app_form",
                    id: "comment-form"
                },
                {
                    type: "ajax_request",
                    group: "ticket_status"
                },
                {
                    type: "app_modifier",
                    group: "ticket_info"
                },
                {
                    type: "app_table_row_update",
                    tableId: "ticket-table"
                }
            ],
            reload: function(bind, result) {
                bind("#ticket-details-top-bar", result.top_bar);
                bind("#ticket-details-ticket-info", result.ticket_info);
            }
        });



        var decending = "<?php echo $sort_as_decending; ?>";

        $("#comment-form").appForm({
            isModal: false,
            onSuccess: function(result) {

                if (decending) {
                    $(result.data).insertAfter("#comment-form-container");
                } else {
                    $(result.data).insertBefore("#comment-form-container");
                }

                appAlert.success(result.message, {
                    duration: 10000
                });

                if (result.validation_error) {
                    appAlert.error(result.message, {
                        duration: 10000
                    });
                }

                if (window.formDropzone) {
                    window.formDropzone['ticket-comment-dropzone'].removeAllFiles();
                }

                if (AppHelper.settings.enableRichTextEditor === "1") {
                    setTimeout(function() {
                        $("#description").val($("#signature-text").val());
                        initWYSIWYGEditor("#description");
                    }, 200);
                } else {
                    $("#description").val($("#signature-text").val() || "");
                }
            }
        });

        if (!$("#signature-text").val()) {
            $("#description").text() ? $("#description").text("\n" + $("#description").text()) : "";
            $("#description").focus();
        }

        if (AppHelper.settings.enableRichTextEditor === "1") {
            initWYSIWYGEditor("#description");
        }

        var $inputField = $("#description"),
            $lastFocused;


        $inputField.focus(function() {
            $lastFocused = document.activeElement;
        });

        function insertTemplate(text) {


            if (AppHelper.settings.enableRichTextEditor === "1") {
                insertHTMLintoWYSIWYGEditor($inputField, text);
            } else {
                if ($lastFocused === undefined) {
                    return;
                }

                var scrollPos = $lastFocused.scrollTop;
                var pos = 0;
                var browser = (($lastFocused.selectionStart || $lastFocused.selectionStart === "0") ? "ff" : (document.selection ? "ie" : false));

                if (browser === "ff") {
                    pos = $lastFocused.selectionStart;
                }

                var front = ($lastFocused.value).substring(0, pos);
                var back = ($lastFocused.value).substring(pos, $lastFocused.value.length);
                $lastFocused.value = front + text + back;
                pos = pos + text.length;

                $lastFocused.scrollTop = scrollPos;
            }

            //close the modal
            $("#close-template-modal-btn").trigger("click");
        }

        // Common function for inserting template
        function insertTemplateIntoEditor(template) {
            if (AppHelper.settings.enableRichTextEditor !== "1") {
                //insert only text when rich editor isn't enabled
                template = $("<div>").html(template).text();
            }

            if ($lastFocused === undefined) {
                if (AppHelper.settings.enableRichTextEditor === "1") {
                    insertTemplate(template);
                } else {
                    $("#description").text(template);
                }
            } else {
                insertTemplate(template);
            }

            // Close modal if exists
            $("#close-template-modal-btn").trigger("click");
        }

        // When clicking on the ticket template table row
        $("body").on("click", "#ticket-template-table tr", function() {
            var template = $(this).find(".js-description").html();
            insertTemplateIntoEditor(template);
        });

        $("body").on("click", ".insert-into-editor-button", function() {
            var template = $(this).closest(".ticket-comment-container").find("#ticket-comment-description").val();
            insertTemplateIntoEditor(template);
        });

        //set value 1, when click save as button
        $("#save-as-note-button").click(function() {
            $("#is-note").val('1');
            $(this).trigger("submit");
        });

        //set value 0, when click post comment button
        $("#save-ticket-comment-button").click(function() {
            $("#is-note").val('0');
        });

        $('[data-bs-toggle="tooltip"]').tooltip();

        $(".pin-comment-button").click(function() {
            var comment_id = $(this).attr('data-pin-comment-id');
            var ticketId = "<?php echo $ticket_info->id; ?>";

            appLoader.show();
            $.ajax({
                url: "<?php echo get_uri("tickets/pin_comment/"); ?>/" + comment_id + "/" + ticketId,
                type: 'POST',
                dataType: "json",
                success: function(result) {
                    if (result.success) {
                        $("#ticket-pinned-comments").find(".card-body").append(result.data);
                        appLoader.hide();
                    } else {
                        appAlert.error(result.message);
                    }

                    if (result.status) {
                        $("#pin-comment-button-" + comment_id).addClass("hide");
                        $("#unpin-comment-button-" + comment_id).removeClass("hide");
                        $("#ticket-pinned-comments").removeClass("hide");
                    }
                }
            });
        });

        $(".unpin-comment-button").click(function() {
            var comment_id = $(this).attr('data-pin-comment-id');
            $("#pin-comment-button-" + comment_id).removeClass("hide");
            $("#unpin-comment-button-" + comment_id).addClass("hide");
        });

        //remove comment link from url
        var commentHash = window.location.hash;
        if (commentHash.indexOf('#ticket-comment') > -1) {
            history.replaceState("", "", window.location.pathname);
        }

        function highlightSpecificComment(commentId) {
            $(".comment-highlight-section").removeClass("comment-highlight");
            $("#ticket-comment-" + commentId).addClass("comment-highlight");
            window.location.hash = ""; //remove first to scroll with main link
            window.location.hash = "#ticket-comment-" + commentId;
        }

        $(".pinned-comment-highlight-link").click(function(e) {
            var comment_id = $(this).attr('data-original-comment-link-id');
            highlightSpecificComment(comment_id);
        });


        $(".navigate-back").on("click", function() {
            if (!$(".tickets-list-section").length) {
                window.location.href = "<?php echo get_uri('tickets/index'); ?>"
            }
            $(".tickets-list-section").removeClass("hide");
            $(".navbar").removeClass("hide");
            $(".navbar-custom").removeClass("hide");
            $("#compact-details-page").addClass("hide").html("");
        });

        <?php if ($can_edit_ticket) { ?>

            $('body').on('click', '[data-act=ticket-modifier]', function(e) {
                $(this).appModifier({
                    dropdownData: {
                        labels: <?php echo json_encode($label_suggestions); ?>,
                        assigned_to: <?php echo json_encode($assign_to_dropdown); ?>
                    }
                });
                return false;
            });

        <?php } ?>

    });
</script>