From da51fc065fbf4791eb474001c1f7ea668fef33fd Mon Sep 17 00:00:00 2001 From: Anchit Bajaj Date: Fri, 26 Jul 2019 14:21:20 +0530 Subject: [PATCH] [EngadgetBridge] New bridge for Engadget (#1215) * [EngadgetBridge] New bridge for Engadget --- bridges/EngadgetBridge.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 bridges/EngadgetBridge.php diff --git a/bridges/EngadgetBridge.php b/bridges/EngadgetBridge.php new file mode 100644 index 00000000..cf200fa4 --- /dev/null +++ b/bridges/EngadgetBridge.php @@ -0,0 +1,26 @@ +collectExpandableDatas(static::URI . 'rss.xml', 15); + } + + protected function parseItem($newsItem){ + $item = parent::parseItem($newsItem); + // $articlePage gets the entire page's contents + $articlePage = getSimpleHTMLDOM($newsItem->link); + // figure contain's the main article image + $article = $articlePage->find('figure', 0); + // .article-text has the actual article + foreach($articlePage->find('.article-text') as $element) + $article = $article . $element; + $item['content'] = $article; + return $item; + } +}