]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ImportBundle/Import/ChromeImport.php
60602a1bdecbda0a96bb61b5a715f6cbdf5d32a0
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Import / ChromeImport.php
1 <?php
2
3 namespace Wallabag\ImportBundle\Import;
4
5 class ChromeImport extends BrowserImport
6 {
7 protected $filepath;
8
9 /**
10 * {@inheritdoc}
11 */
12 public function getName()
13 {
14 return 'Chrome';
15 }
16
17 /**
18 * {@inheritdoc}
19 */
20 public function getUrl()
21 {
22 return 'import_chrome';
23 }
24
25 /**
26 * {@inheritdoc}
27 */
28 public function getDescription()
29 {
30 return 'import.chrome.description';
31 }
32 }