create ImportController to list importers

This commit is contained in:
Nicolas Lœuillet
2015-10-23 14:45:50 +02:00
committed by Jeremy Benoist
parent 557e549db7
commit d51b38ed30
5 changed files with 49 additions and 5 deletions

View File

@ -23,6 +23,16 @@ class PocketImport implements ImportInterface
$this->consumerKey = $consumerKey;
}
public function getName()
{
return 'Pocket';
}
public function getDescription()
{
return 'This importer will import all your <a href="https://getpocket.com">Pocket</a> data.';
}
/**
* Create a new Client.
*