From: Andrew Dolgov Date: Fri, 22 Aug 2014 11:40:41 +0000 (+0400) Subject: add af_elreg X-Git-Tag: 1.14~16 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=35dfbdc573097ebd18b8d2e0194818ac04209cec add af_elreg --- diff --git a/plugins/af_elreg/init.php b/plugins/af_elreg/init.php new file mode 100644 index 00000000..a652d25d --- /dev/null +++ b/plugins/af_elreg/init.php @@ -0,0 +1,42 @@ +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) { + $basenode = $doc->getElementById("body"); + + if ($basenode) { + $article["content"] = $doc->saveXML($basenode); + } + } + } + + return $article; + } + + function api_version() { + return 2; + } +} +?>