[DaveRamseyBlogBridge] Add new bridge (#1459)
This commit is contained in:
parent
e102353ab8
commit
a3b4bd2d08
1 changed files with 24 additions and 0 deletions
24
bridges/DaveRamseyBlogBridge.php
Normal file
24
bridges/DaveRamseyBlogBridge.php
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class DaveRamseyBlogBridge extends BridgeAbstract {
|
||||||
|
const MAINTAINER = 'johnpc';
|
||||||
|
const NAME = 'Dave Ramsey Blog';
|
||||||
|
const URI = 'https://www.daveramsey.com/blog';
|
||||||
|
const CACHE_TIMEOUT = 7200; // 2h
|
||||||
|
const DESCRIPTION = 'Returns blog posts from daveramsey.com';
|
||||||
|
|
||||||
|
public function collectData()
|
||||||
|
{
|
||||||
|
$html = getSimpleHTMLDOM(self::URI)
|
||||||
|
or returnServerError('Could not request daveramsey.com.');
|
||||||
|
|
||||||
|
foreach ($html->find('.Post') as $element) {
|
||||||
|
$this->items[] = array(
|
||||||
|
'uri' => 'https://www.daveramsey.com' . $element->find('header > a', 0)->href,
|
||||||
|
'title' => $element->find('header > h2 > a', 0)->plaintext,
|
||||||
|
'tags' => $element->find('.Post-topic', 0)->plaintext,
|
||||||
|
'content' => $element->find('.Post-body', 0)->plaintext,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue