forked from wallabag/wallabag
Move source files directly under src/ directory
This commit is contained in:
40
src/Import/WallabagV2Import.php
Normal file
40
src/Import/WallabagV2Import.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace Wallabag\CoreBundle\Import;
|
||||
|
||||
class WallabagV2Import extends WallabagImport
|
||||
{
|
||||
public function getName()
|
||||
{
|
||||
return 'wallabag v2';
|
||||
}
|
||||
|
||||
public function getUrl()
|
||||
{
|
||||
return 'import_wallabag_v2';
|
||||
}
|
||||
|
||||
public function getDescription()
|
||||
{
|
||||
return 'import.wallabag_v2.description';
|
||||
}
|
||||
|
||||
protected function prepareEntry($entry = [])
|
||||
{
|
||||
return [
|
||||
'html' => $entry['content'],
|
||||
'headers' => [
|
||||
'content-type' => $entry['mimetype'],
|
||||
],
|
||||
'is_archived' => (bool) ($entry['is_archived'] || $this->markAsRead),
|
||||
'is_starred' => (bool) $entry['is_starred'],
|
||||
] + $entry;
|
||||
}
|
||||
|
||||
protected function setEntryAsRead(array $importedEntry)
|
||||
{
|
||||
$importedEntry['is_archived'] = 1;
|
||||
|
||||
return $importedEntry;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user