summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-08-22 15:40:41 +0400
committerAndrew Dolgov <[email protected]>2014-08-22 15:40:41 +0400
commit35dfbdc573097ebd18b8d2e0194818ac04209cec (patch)
tree9414e48c14b6c72576c99418bbfe200464c72f0e /plugins
parent522e8b3500ac9e2007ef8862292cb7d25f4c22d2 (diff)
add af_elreg
Diffstat (limited to 'plugins')
-rw-r--r--plugins/af_elreg/init.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/plugins/af_elreg/init.php b/plugins/af_elreg/init.php
new file mode 100644
index 000000000..a652d25d1
--- /dev/null
+++ b/plugins/af_elreg/init.php
@@ -0,0 +1,42 @@
+<?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) {
+ $basenode = $doc->getElementById("body");
+
+ if ($basenode) {
+ $article["content"] = $doc->saveXML($basenode);
+ }
+ }
+ }
+
+ return $article;
+ }
+
+ function api_version() {
+ return 2;
+ }
+}
+?>