function process(&$article) {
$owner_uid = $article["owner_uid"];
- if (strpos($article["link"], "cad-comic.com/cad/") !== FALSE) {
- if (strpos($article["title"], "News:") === FALSE) {
+ if (strpos($article["title"], "News:") === FALSE) {
+ if (strpos($article["link"], "cad-comic.com/cad/") !== FALSE) {
$doc = new DOMDocument();
@$doc->loadHTML(fetch_file_contents($article["link"]));
$article["content"] = $doc->saveXML($basenode);
}
}
-
}
+
+ elseif (strpos($article["link"], "cad-comic.com/sillies/") !== FALSE) {
+ $doc = new DOMDocument();
+ @$doc->loadHTML(fetch_file_contents($article["link"]));
+ $basenode = false;
+
+ if ($doc) {
+ $xpath = new DOMXPath($doc);
+ $basenode = $xpath->query('(//img[contains(@src, "/comics/sillies-")])')->item(0);
+
+ if ($basenode) {
+ $article["content"] = $doc->saveXML($basenode);
+ }
+ }
+ }
+
return true;
}