wallabag/src/Import/ElcuratorImport.php

40 lines
792 B
PHP
Raw Normal View History

2019-11-07 11:17:01 +00:00
<?php
2023-12-31 17:21:09 +00:00
namespace Wallabag\CoreBundle\Import;
2019-11-07 11:17:01 +00:00
class ElcuratorImport extends WallabagImport
{
public function getName()
{
return 'elcurator';
}
public function getUrl()
{
return 'import_elcurator';
}
public function getDescription()
{
return 'import.elcurator.description';
}
protected function prepareEntry($entry = [])
{
return [
'url' => $entry['url'],
'title' => $entry['title'],
'created_at' => $entry['created_at'],
'is_archived' => 0,
'is_starred' => $entry['is_saved'],
] + $entry;
}
protected function setEntryAsRead(array $importedEntry)
{
$importedEntry['is_archived'] = 1;
return $importedEntry;
}
}