1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 04:05:55 +00:00

allow user plugins to expose public methods out in a limited fashion

This commit is contained in:
Andrew Dolgov
2017-02-10 16:04:28 +03:00
parent fafd32e2dc
commit 4daaf23491
3 changed files with 43 additions and 5 deletions

View File

@@ -22,6 +22,10 @@ class Plugin {
return array();
}
function is_public_method($method) {
return false;
}
function get_js() {
return "";
}