From 35dfbdc573097ebd18b8d2e0194818ac04209cec Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 22 Aug 2014 15:40:41 +0400 Subject: [PATCH] add af_elreg --- plugins/af_elreg/init.php | 42 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 plugins/af_elreg/init.php 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; + } +} +?> -- 2.39.2