diff --git a/plugins/af_comics/filters/af_comics_dumbingofage.php b/plugins/af_comics/filters/af_comics_dumbingofage.php new file mode 100644 index 000000000..5847b9a74 --- /dev/null +++ b/plugins/af_comics/filters/af_comics_dumbingofage.php @@ -0,0 +1,33 @@ + $article['link'], + 'useragent' => 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0', + ]); + + if (!$res && UrlHelper::$fetch_last_error_content) + $res = UrlHelper::$fetch_last_error_content; + + $doc = new DOMDocument(); + + if ($res && $doc->loadHTML($res)) { + $xpath = new DOMXPath($doc); + $comic = $xpath->query('//div[@id="comic-1"]')->item(0); + if ($comic) { + $article["content"] = $doc->saveHTML($comic) . $article["content"]; + } + } + + return true; + } + + return false; + } +}