array( 'name'=>'keyword', 'required'=>true ) )); public function collectData(){ $link = 'https://post-cache.tagboard.com/search/' .$this->getInput('u'); $html = $this->getSimpleHTMLDOM($link) or $this->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(){ return 'tagboard - ' .$this->getInput('u'); } public function getCacheDuration(){ return 21600; // 6 hours } }