From e6257c31ce1b7a1f3e9ad99d85653bdb8e81ef61 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 15 Jul 2015 16:14:10 +0300 Subject: [PATCH] remove af_habr --- plugins/af_habr/init.php | 44 ---------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 plugins/af_habr/init.php diff --git a/plugins/af_habr/init.php b/plugins/af_habr/init.php deleted file mode 100644 index e6dc54c24..000000000 --- a/plugins/af_habr/init.php +++ /dev/null @@ -1,44 +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"], "habrahabr.ru") !== FALSE) { - - $doc = new DOMDocument(); - @$doc->loadHTML(fetch_file_contents($article["link"])); - - $basenode = false; - - if ($doc) { - $xpath = new DOMXPath($doc); - - $basenode = $xpath->query("//div[contains(@class,'content') and contains(@class, 'html_format')]")->item(0); - - if ($basenode) { - $article["content"] = $doc->saveXML($basenode); - } - } - } - - return $article; - } - - function api_version() { - return 2; - } -} -?>