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_sciam/init.php | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 plugins/af_sciam/init.php (limited to 'plugins/af_sciam') diff --git a/plugins/af_sciam/init.php b/plugins/af_sciam/init.php deleted file mode 100644 index 9c14515e0..000000000 --- a/plugins/af_sciam/init.php +++ /dev/null @@ -1,46 +0,0 @@ -host = $host; - - $host->add_hook($host::HOOK_ARTICLE_FILTER, $this); - } - - function hook_article_filter($article) { - $owner_uid = $article["owner_uid"]; - - if (strpos($article["link"], "scientificamerican.com") !== FALSE || strpos($article["link"], "rss.sciam.com") !== FALSE) { - - $doc = new DOMDocument(); - @$doc->loadHTML(fetch_file_contents($article["link"])); - - $basenode = false; - - if ($doc) { - $xpath = new DOMXpath($doc); - - $basenode = $xpath->query("//*[@id='singleBlogPost' or @id='articleContent']")->item(0); - - if ($basenode) { - $article["content"] = $doc->saveXML($basenode); - } - } - } - - return $article; - } - - function api_version() { - return 2; - } -} -?> -- cgit v1.2.3