From baf2bfd5049e946e5fa1b540cbc0e8008c33102f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 6 Jul 2015 23:04:44 +0300 Subject: remove old-style per-site plugins --- plugins/af_elreg/init.php | 50 ----------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 plugins/af_elreg/init.php (limited to 'plugins/af_elreg/init.php') 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 @@ -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; - } -} -?> -- cgit v1.2.3-54-g00ecf