$entry['title'], 'html' => $entry['content'], 'url' => $entry['url'], 'is_archived' => $entry['is_read'] || $this->markAsRead, 'is_starred' => $entry['is_fav'], 'tags' => '', 'created_at' => '', ]; // force content to be refreshed in case on bad fetch in the v1 installation if (in_array($entry['title'], $this->untitled)) { $data['title'] = ''; $data['html'] = ''; } if (array_key_exists('tags', $entry) && $entry['tags'] != '') { $data['tags'] = $entry['tags']; } return $data; } /** * {@inheritdoc} */ protected function setEntryAsRead(array $importedEntry) { $importedEntry['is_read'] = 1; return $importedEntry; } }