]> git.wh0rd.org Git - tt-rss.git/commitdiff
add no_url_hashes plugin
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Thu, 5 Dec 2013 19:42:20 +0000 (23:42 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Thu, 5 Dec 2013 19:42:20 +0000 (23:42 +0400)
plugins/no_url_hashes/init.js [new file with mode: 0644]
plugins/no_url_hashes/init.php [new file with mode: 0644]

diff --git a/plugins/no_url_hashes/init.js b/plugins/no_url_hashes/init.js
new file mode 100644 (file)
index 0000000..a437a1f
--- /dev/null
@@ -0,0 +1,4 @@
+dojo.addOnLoad(function() {
+       hash_set = function() { };
+       hash_get = function() { };
+});
diff --git a/plugins/no_url_hashes/init.php b/plugins/no_url_hashes/init.php
new file mode 100644 (file)
index 0000000..da31267
--- /dev/null
@@ -0,0 +1,25 @@
+<?php
+class No_URL_Hashes extends Plugin {
+       private $host;
+
+       function about() {
+               return array(1.0,
+                       "Disable URL hash usage (e.g. #f=10, etc)",
+                       "fox");
+       }
+
+       function init($host) {
+               $this->host = $host;
+
+       }
+
+       function get_js() {
+               return file_get_contents(__DIR__ . "/init.js");
+       }
+
+       function api_version() {
+               return 2;
+       }
+
+}
+?>