mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-08 07:38:48 +01:00
33 lines
465 B
PHP
33 lines
465 B
PHP
|
<?php
|
||
|
|
||
|
namespace Wallabag\ImportBundle\Import;
|
||
|
|
||
|
class ChromeImport extends BrowserImport
|
||
|
{
|
||
|
protected $filepath;
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function getName()
|
||
|
{
|
||
|
return 'Chrome';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function getUrl()
|
||
|
{
|
||
|
return 'import_chrome';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function getDescription()
|
||
|
{
|
||
|
return 'import.chrome.description';
|
||
|
}
|
||
|
}
|