summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-18 11:54:29 +0300
committerAndrew Dolgov <[email protected]>2021-02-18 11:54:29 +0300
commit466cba39d86487ce3c81d7aeade96e9f9e4a119d (patch)
tree2e21056edf73e853319a05aa25b038c078c4cfd1 /include
parent1adb9bb6b643736706b746629b849df9cdf45e50 (diff)
parentb888bc2091c6737846f54a729ee047e4693fd8e3 (diff)
Merge branch 'master' of git.fakecake.org:fox/tt-rss
Diffstat (limited to 'include')
-rwxr-xr-xinclude/controls.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/controls.php b/include/controls.php
index 4c60d94f3..d8506877b 100755
--- a/include/controls.php
+++ b/include/controls.php
@@ -11,6 +11,17 @@
return $rv;
}
+ // shortcut syntax (disabled)
+ /* function pluginhandler_tags(\Plugin $plugin, string $method) {
+ return hidden_tag("op", strtolower(get_class($plugin) . \PluginHost::PUBLIC_METHOD_DELIMITER . $method));
+ } */
+
+ function pluginhandler_tags(\Plugin $plugin, string $method) {
+ return hidden_tag("op", "pluginhandler") .
+ hidden_tag("plugin", strtolower(get_class($plugin))) .
+ hidden_tag("method", $method);
+ }
+
function button_tag(string $value, string $type, array $attributes = []) {
return "<button dojoType=\"dijit.form.Button\" ".attributes_to_string($attributes)." type=\"$type\">".htmlspecialchars($value)."</button>";
}
@@ -155,4 +166,3 @@
return $ret;
}
-