summaryrefslogtreecommitdiff
path: root/plugins/af_comics/filters/af_comics_twp.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/af_comics/filters/af_comics_twp.php')
-rw-r--r--plugins/af_comics/filters/af_comics_twp.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/af_comics/filters/af_comics_twp.php b/plugins/af_comics/filters/af_comics_twp.php
new file mode 100644
index 000000000..156b2b687
--- /dev/null
+++ b/plugins/af_comics/filters/af_comics_twp.php
@@ -0,0 +1,39 @@
+<?php
+class Af_Comics_Twp extends Af_ComicFilter {
+
+ function supported() {
+ return array("Three Word Phrase");
+ }
+
+ function process(&$article) {
+ $owner_uid = $article["owner_uid"];
+
+ if (strpos($article["link"], "threewordphrase.com") !== FALSE) {
+ if (strpos($article["plugin_data"], "af_comics,$owner_uid:") === FALSE) {
+
+ $doc = new DOMDocument();
+ @$doc->loadHTML(fetch_file_contents($article["link"]));
+
+ $basenode = false;
+
+ if ($doc) {
+ $xpath = new DOMXpath($doc);
+
+ $basenode = $xpath->query("//td/center/img")->item(0);
+
+ if ($basenode) {
+ $article["content"] = $doc->saveXML($basenode);
+ $article["plugin_data"] = "af_comics,$owner_uid:" . $article["plugin_data"];
+ }
+ }
+ } else if (isset($article["stored"]["content"])) {
+ $article["content"] = $article["stored"]["content"];
+ }
+
+ return true;
+ }
+
+ return false;
+ }
+}
+?>