2015-01-19 13:12:40 +01:00
|
|
|
function showTrgmRelated(id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var query = "backend.php?op=pluginhandler&plugin=af_psql_trgm&method=showrelated¶m=" + param_escape(id);
|
|
|
|
|
2015-01-19 13:46:15 +01:00
|
|
|
if (dijit.byId("trgmRelatedDlg"))
|
|
|
|
dijit.byId("trgmRelatedDlg").destroyRecursive();
|
2015-01-19 13:12:40 +01:00
|
|
|
|
|
|
|
dialog = new dijit.Dialog({
|
2015-01-19 13:46:15 +01:00
|
|
|
id: "trgmRelatedDlg",
|
2015-01-19 13:12:40 +01:00
|
|
|
title: __("Related articles"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function() {
|
|
|
|
|
|
|
|
},
|
|
|
|
href: query,
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("showTrgmRelated", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|