aboutsummaryrefslogtreecommitdiff
path: root/bridges/EngadgetBridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/EngadgetBridge.php')
-rw-r--r--bridges/EngadgetBridge.php46
1 files changed, 25 insertions, 21 deletions
diff --git a/bridges/EngadgetBridge.php b/bridges/EngadgetBridge.php
index cf200fa4..2bed4a4a 100644
--- a/bridges/EngadgetBridge.php
+++ b/bridges/EngadgetBridge.php
@@ -1,26 +1,30 @@
<?php
-class EngadgetBridge extends FeedExpander {
- const MAINTAINER = 'IceWreck';
- const NAME = 'Engadget Bridge';
- const URI = 'https://www.engadget.com/';
- const CACHE_TIMEOUT = 3600;
- const DESCRIPTION = 'Article content for Engadget.';
+class EngadgetBridge extends FeedExpander
+{
+ const MAINTAINER = 'IceWreck';
+ const NAME = 'Engadget Bridge';
+ const URI = 'https://www.engadget.com/';
+ const CACHE_TIMEOUT = 3600;
+ const DESCRIPTION = 'Article content for Engadget.';
- public function collectData(){
- $this->collectExpandableDatas(static::URI . 'rss.xml', 15);
- }
+ public function collectData()
+ {
+ $this->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;
- }
+ 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;
+ }
}