maintainer = "superbaillot.net"; $this->name = "Footito"; $this->uri = "http://www.footito.fr/"; $this->description = "Footito"; $this->update = "2016-08-09"; } public function collectData(array $param){ $html = $this->file_get_html('http://www.footito.fr/') or $this->returnError('Could not request Footito.', 404); foreach($html->find('div.post') as $element) { $item = new Item(); $content = trim($element->innertext); $content = str_replace("content = $content; $title = $element->find('.contenu .texte ', 0)->plaintext; $item->title = $title; $info = $element->find('div.infos', 0); $item->timestamp = strtotime($info->find('time', 0)->datetime); $item->author = $info->find('a.auteur', 0)->plaintext; $this->items[] = $item; } } }