array( 'name' => 'Widget selection', 'type' => 'list', 'required' => true, 'values' => array( 'Latest added apps' => 'added', 'Latest updated apps' => 'updated' ) ) )); public function collectData(){ $url = self::URI; $html = getSimpleHTMLDOM($url) or returnServerError('Could not request F-Droid.'); // targetting the corresponding widget based on user selection // "updated" is the 4th widget on the page, "added" is the 5th switch($this->getInput('u')) { case 'updated': $html_widget = $html->find('div.sidebar-widget', 4); break; default: $html_widget = $html->find('div.sidebar-widget', 5); break; } // and now extracting app info from the selected widget (and yeah turns out icons are of heterogeneous sizes) foreach($html_widget->find('a') as $element) { $item = array(); $item['uri'] = self::URI . $element->href; $item['title'] = $element->find('h4', 0)->plaintext; $item['icon'] = $element->find('img', 0)->src; $item['summary'] = $element->find('span.package-summary', 0)->plaintext; $item['content'] = '
'.$item['summary']; $this->items[] = $item; } } }