collectExpandableDatas('http://feeds.feedburner.com/oatmealfeed'); } protected function parseItem($newsItem) { $item = $this->parseRSS_1_0_Item($newsItem); $articlePage = $this->get_cached($item['uri']); $content = $articlePage->find('#comic', 0); if(is_null($content)) // load alternative $content = $articlePage->find('#blog', 0); if(!is_null($content)) $item['content'] = $content->innertext; return $item; } public function getCacheDuration(){ return 7200; // 2h hours } }