如何将来自 Smart admin 的注销警报弹出窗口也用于其他请求?

How to use logout alert popup from Smart admin for other requests too?

我正在使用 Smart Admin Theme,尤其是 Ajax 版本。当我按下右上角的注销按钮时,它会弹出一条漂亮的警报确认消息。

我也在尝试了解如何在其他请求中使用它?例如,如果有人要删除一个重要的资源,我希望他们能看到它。但是我不确定主题制作者是否给出了触发此方法的方法。

我知道有 data-attributes 与之相关,例如:

data-logout-msg="You can improve your security further after logging out by closing this opened browser"

但我不确定如何在我的应用程序中的另一个 link 上使用它。有什么想法吗?有没有我可以调用的 API 方法?


$("#smart-mod-eg1").click(function(e) {
            $.SmartMessageBox({
                title : "Smart Alert!",
                content : "This is a confirmation box. Can be programmed for button callback",
                buttons : '[No][Yes]'
            }, function(ButtonPressed) {
                if (ButtonPressed === "Yes") {

                    $.smallBox({
                        title : "Callback function",
                        content : " You pressed Yes...",
                        color : "#659265",
                        iconSmall : "fa fa-check fa-2x fadeInRight animated",
                        timeout : 4000
                    });
                }
                if (ButtonPressed === "No") {
                    $.smallBox({
                        title : "Callback function",
                        content : " You pressed No...",
                        color : "#C46A69",
                        iconSmall : "fa fa-times fa-2x fadeInRight animated",
                        timeout : 4000
                    });
                }

            });
            e.preventDefault();
        })