diff --git a/bridges/TagBoardBridge.php b/bridges/TagBoardBridge.php deleted file mode 100644 index d8ee12000cf..00000000000 --- a/bridges/TagBoardBridge.php +++ /dev/null @@ -1,52 +0,0 @@ - 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); - $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(); - } -}