plugins: mail, mailto: remove code from global context
This commit is contained in:
parent
71fc6d45bd
commit
e76d1fb995
|
@ -124,12 +124,12 @@ class Feeds extends Handler_Protected {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PluginHost::getInstance()->get_plugin("mail")) {
|
if (PluginHost::getInstance()->get_plugin("mail")) {
|
||||||
$reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
|
$reply .= "<option value=\"Plugins.Mail.send()\">".__('Forward by email').
|
||||||
"</option>";
|
"</option>";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PluginHost::getInstance()->get_plugin("mailto")) {
|
if (PluginHost::getInstance()->get_plugin("mailto")) {
|
||||||
$reply .= "<option value=\"mailtoArticle(false)\">".__('Forward by email').
|
$reply .= "<option value=\"Plugins.Mailto.send()\">".__('Forward by email').
|
||||||
"</option>";
|
"</option>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -302,12 +302,10 @@ require(["dojo/_base/kernel",
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.hotkey_actions["email_article"] = function () {
|
this.hotkey_actions["email_article"] = function () {
|
||||||
if (typeof emailArticle != "undefined") {
|
if (typeof Plugins.Mail != "undefined") {
|
||||||
emailArticle();
|
Plugins.Mail.onHotkey(Headlines.getSelected());
|
||||||
} else if (typeof mailtoArticle != "undefined") {
|
|
||||||
mailtoArticle();
|
|
||||||
} else {
|
} else {
|
||||||
alert(__("Please enable mail plugin first."));
|
alert(__("Please enable mail or mailto plugin first."));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.hotkey_actions["select_all"] = function () {
|
this.hotkey_actions["select_all"] = function () {
|
||||||
|
|
|
@ -72,7 +72,7 @@ class Mail extends Plugin {
|
||||||
function hook_article_button($line) {
|
function hook_article_button($line) {
|
||||||
return "<img src=\"plugins/mail/mail.png\"
|
return "<img src=\"plugins/mail/mail.png\"
|
||||||
class='tagsPic' style=\"cursor : pointer\"
|
class='tagsPic' style=\"cursor : pointer\"
|
||||||
onclick=\"emailArticle(".$line["id"].")\"
|
onclick=\"Plugins.Mail.send(".$line["id"].")\"
|
||||||
alt='Zoom' title='".__('Forward by email')."'>";
|
alt='Zoom' title='".__('Forward by email')."'>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
function emailArticle(id) {
|
Plugins.Mail = {
|
||||||
|
send: function(id) {
|
||||||
if (!id) {
|
if (!id) {
|
||||||
let ids = Headlines.getSelected();
|
let ids = Headlines.getSelected();
|
||||||
|
|
||||||
|
@ -36,7 +37,8 @@ function emailArticle(id) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
href: query});
|
href: query
|
||||||
|
});
|
||||||
|
|
||||||
/* var tmph = dojo.connect(dialog, 'onLoad', function() {
|
/* var tmph = dojo.connect(dialog, 'onLoad', function() {
|
||||||
dojo.disconnect(tmph);
|
dojo.disconnect(tmph);
|
||||||
|
@ -47,6 +49,8 @@ function emailArticle(id) {
|
||||||
}); */
|
}); */
|
||||||
|
|
||||||
dialog.show();
|
dialog.show();
|
||||||
|
},
|
||||||
|
onHotkey: function(id) {
|
||||||
|
Plugins.Mail.send(id);
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
function mailtoArticle(id) {
|
Plugins.Mailto = {
|
||||||
|
send: function (id) {
|
||||||
if (!id) {
|
if (!id) {
|
||||||
const ids = Headlines.getSelected();
|
const ids = Headlines.getSelected();
|
||||||
|
|
||||||
|
@ -23,5 +24,11 @@ function mailtoArticle(id) {
|
||||||
|
|
||||||
dialog.show();
|
dialog.show();
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// override default hotkey action if enabled
|
||||||
|
Plugins.Mail = Plugins.Mail || {};
|
||||||
|
|
||||||
|
Plugins.Mail.onHotkey = function(id) {
|
||||||
|
Plugins.Mailto.send(id);
|
||||||
|
};
|
|
@ -21,7 +21,7 @@ class MailTo extends Plugin {
|
||||||
function hook_article_button($line) {
|
function hook_article_button($line) {
|
||||||
return "<img src=\"plugins/mailto/mail.png\"
|
return "<img src=\"plugins/mailto/mail.png\"
|
||||||
class='tagsPic' style=\"cursor : pointer\"
|
class='tagsPic' style=\"cursor : pointer\"
|
||||||
onclick=\"mailtoArticle(".$line["id"].")\"
|
onclick=\"Plugins.Mailto.send(".$line["id"].")\"
|
||||||
alt='Zoom' title='".__('Forward by email')."'>";
|
alt='Zoom' title='".__('Forward by email')."'>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue