Rss-Bridge/bridges/YahtzeeDevDiaryBridge.php

22 lines
607 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
class YahtzeeDevDiaryBridge extends BridgeAbstract {
const MAINTAINER = 'somini';
const NAME = "Yahtzee's Dev Diary";
const URI = 'https://www.escapistmagazine.com/v2/yahtzees-dev-diary-completed-games-list/';
const DESCRIPTION = 'Yahtzees Dev Diary Series';
public function collectData(){
$html = getSimpleHTMLDOM($this->getURI())
or returnServerError('Could not load content');
foreach($html->find('blockquote.wp-embedded-content a') as $element) {
$item = array();
$item['title'] = $element->innertext;
$item['uri'] = $element->href;
$this->items[] = $item;
}
}
}