af_comics: add pvponline
This commit is contained in:
parent
67fc7ba6e3
commit
610914d4d6
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
class Af_Comics_Pvp extends Af_ComicFilter {
|
||||||
|
|
||||||
|
function supported() {
|
||||||
|
return array("PvP Online");
|
||||||
|
}
|
||||||
|
|
||||||
|
function process(&$article) {
|
||||||
|
if (strpos($article["guid"], "pvponline.com") !== FALSE) {
|
||||||
|
|
||||||
|
$res = fetch_file_contents($article["link"], false, false, false,
|
||||||
|
false, false, 0,
|
||||||
|
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
|
||||||
|
|
||||||
|
$doc = new DOMDocument();
|
||||||
|
@$doc->loadHTML($res);
|
||||||
|
|
||||||
|
if ($doc) {
|
||||||
|
$xpath = new DOMXPath($doc);
|
||||||
|
$basenode = $xpath->query('//section[@class="comic-art"]')->item(0);
|
||||||
|
|
||||||
|
if ($basenode) {
|
||||||
|
$article["content"] = $doc->saveXML($basenode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
Loading…
Reference in New Issue