array( 'name' => 'keyword', 'required' => true ) )); public function getIcon() { return 'https://static.tagboard.com/public/favicon-32x32.png'; } public function collectData(){ $link = 'https://post-cache.tagboard.com/search/' . $this->getInput('u'); $html = getSimpleHTMLDOM($link) or returnServerError('Could not request TagBoard for : ' . $link); $parsed_json = json_decode($html); foreach($parsed_json->{'posts'} as $element) { $item = array(); $item['uri'] = $element->{'permalink'}; $item['title'] = $element->{'text'}; $thumbnailUri = $element->{'photos'}[0]->{'m'}; if(isset($thumbnailUri)) { $item['content'] = ''; } else { $item['content'] = $element->{'html'}; } $this->items[] = $item; } } public function getName(){ if(!is_null($this->getInput('u'))) { return 'tagboard - ' . $this->getInput('u'); } return parent::getName(); } }