summaryrefslogtreecommitdiff
path: root/plugins/googlereadertheme/init.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-21 19:41:27 +0400
committerAndrew Dolgov <[email protected]>2013-03-21 19:41:27 +0400
commitd4a5129a24d00efb773bbf4f7e39cd53072aaa46 (patch)
tree183da5e13b94a385b4a984a8d6533325f44a36a0 /plugins/googlereadertheme/init.php
parentefc7243c70779dffb4b14f9c0d70959655b882a4 (diff)
remove plugins/googlereadertheme
Diffstat (limited to 'plugins/googlereadertheme/init.php')
-rw-r--r--plugins/googlereadertheme/init.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/plugins/googlereadertheme/init.php b/plugins/googlereadertheme/init.php
deleted file mode 100644
index 4ee4a4ba3..000000000
--- a/plugins/googlereadertheme/init.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-class GoogleReaderTheme extends Plugin {
-
- private $link;
- private $host;
-
- function about() {
- return array(1.0,
- "Make tt-rss look similar to Google Reader",
- "levito");
- }
-
- function init($host) {
- $this->link = $host->get_link();
- $this->host = $host;
-
- if ($_SESSION["uid"]) {
- // force-enable combined mode
- set_pref($this->link, "COMBINED_DISPLAY_MODE", true, $_SESSION["uid"]);
- }
- }
-
- function get_css() {
- return file_get_contents(dirname(__FILE__) . "/init.css");
- }
-}
-?>