1 | <?php |
||
20 | class ScoopIt implements ProviderInterface |
||
21 | { |
||
22 | const NAME = 'scoopit'; |
||
23 | const SHARE_URL = 'https://www.scoop.it/bookmarklet?url=%s'; |
||
24 | const BUTTON_URL = 'http://www.scoop.it/button?position=horizontal&url=%s'; |
||
25 | const DTD = '<!DOCTYPE html>'; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function getName() |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function getLink($url, array $options = array()) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function getShares($url) |
||
61 | } |
||
62 |