returnError('Could not request DansTonChat.', 404); foreach($html->find('div.item') as $element) { $item = new \Item(); $item->uri = $element->find('a', 0)->href; $item->title = 'DansTonChat '.$element->find('a', 1)->plaintext; $item->content = $element->find('a', 0)->innertext; $this->items[] = $item; } } public function getName(){ return 'DansTonChat'; } public function getURI(){ return 'http://danstonchat.com'; } public function getCacheDuration(){ return 21600; // 6 hours } }