af_psql_trgm: don't load dialog via http
This commit is contained in:
parent
d439685895
commit
538f87e415
|
@ -1,15 +1,18 @@
|
||||||
/* global dijit, Plugins, __ */
|
/* global dijit, dojo, Plugins, xhrPost, __ */
|
||||||
|
|
||||||
Plugins.Psql_Trgm = {
|
Plugins.Psql_Trgm = {
|
||||||
showRelated: function (id) {
|
showRelated: function (id) {
|
||||||
const query = "backend.php?op=pluginhandler&plugin=af_psql_trgm&method=showrelated¶m=" + encodeURIComponent(id);
|
|
||||||
|
|
||||||
const dialog = new dijit.Dialog({
|
const dialog = new dijit.Dialog({
|
||||||
title: __("Related articles"),
|
title: __("Related articles"),
|
||||||
execute: function () {
|
content: __("Loading, please wait...")
|
||||||
//
|
});
|
||||||
},
|
|
||||||
href: query,
|
const tmph = dojo.connect(dialog, "onShow", null, function (/* e */) {
|
||||||
|
dojo.disconnect(tmph);
|
||||||
|
|
||||||
|
xhrPost("backend.php", {op: 'pluginhandler', plugin: 'af_psql_trgm', method: 'showrelated', id: id}, (transport) => {
|
||||||
|
dialog.attr('content', transport.responseText);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
dialog.show();
|
dialog.show();
|
||||||
|
|
|
@ -46,7 +46,7 @@ class Af_Psql_Trgm extends Plugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
function showrelated() {
|
function showrelated() {
|
||||||
$id = (int) $_REQUEST['param'];
|
$id = (int) $_REQUEST['id'];
|
||||||
$owner_uid = $_SESSION["uid"];
|
$owner_uid = $_SESSION["uid"];
|
||||||
|
|
||||||
$sth = $this->pdo->prepare("SELECT title FROM ttrss_entries, ttrss_user_entries
|
$sth = $this->pdo->prepare("SELECT title FROM ttrss_entries, ttrss_user_entries
|
||||||
|
|
Loading…
Reference in New Issue