summaryrefslogtreecommitdiff
path: root/plugins/af_elreg
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-07-06 23:04:44 +0300
committerAndrew Dolgov <[email protected]>2015-07-06 23:04:44 +0300
commitbaf2bfd5049e946e5fa1b540cbc0e8008c33102f (patch)
tree26556aabd6f9846f0ba00f0c9c7b7b315e8e5cfc /plugins/af_elreg
parent1ff7ae42dfcb1104004280a588d6eb25562fea97 (diff)
remove old-style per-site plugins
Diffstat (limited to 'plugins/af_elreg')
-rw-r--r--plugins/af_elreg/init.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/plugins/af_elreg/init.php b/plugins/af_elreg/init.php
deleted file mode 100644
index c8d5516ee..000000000
--- a/plugins/af_elreg/init.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-class Af_ElReg extends Plugin {
-
- private $host;
-
- function about() {
- return array(1.0,
- "Fetch content of The Register feeds",
- "fox");
- }
-
- function init($host) {
- $this->host = $host;
-
- $host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
- }
-
- function hook_article_filter($article) {
- if (strpos($article["link"], "theregister.co.uk") !== FALSE) {
-
- $doc = new DOMDocument();
- @$doc->loadHTML(fetch_file_contents($article["link"]));
-
- $basenode = false;
-
- if ($doc) {
- $xpath = new DOMXPath($doc);
-
- $trash = $xpath->query("//*[@class='wptl top' or @class='wptl btm']");
-
- foreach ($trash as $t) {
- $t->parentNode->removeChild($t);
- }
-
- $basenode = $doc->getElementById("body");
-
- if ($basenode) {
- $article["content"] = $doc->saveXML($basenode);
- }
- }
- }
-
- return $article;
- }
-
- function api_version() {
- return 2;
- }
-}
-?>