1 | <?php namespace Arcanedev\EmbedVideo\Parsers; |
||
9 | class VimeoParser extends AbstractParser |
||
10 | { |
||
11 | /* ----------------------------------------------------------------- |
||
12 | | Getters & Setters |
||
13 | | ----------------------------------------------------------------- |
||
14 | */ |
||
15 | /** |
||
16 | * Get the video id from cached matches. |
||
17 | * |
||
18 | * @return mixed |
||
19 | */ |
||
20 | 9 | public function videoId() |
|
24 | |||
25 | /** |
||
26 | * Get the default URL queries. |
||
27 | * |
||
28 | * @return array |
||
29 | */ |
||
30 | 24 | protected function defaultQueries() |
|
34 | |||
35 | /** |
||
36 | * Get the iframe pattern. |
||
37 | * |
||
38 | * @return string |
||
39 | */ |
||
40 | 3 | protected function getIframePattern() |
|
44 | |||
45 | /** |
||
46 | * Get the iframe replace. |
||
47 | * |
||
48 | * @return array |
||
49 | */ |
||
50 | 3 | protected function getIframeReplacer() |
|
57 | |||
58 | /** |
||
59 | * Get the info URL. |
||
60 | * |
||
61 | * @return string |
||
62 | */ |
||
63 | 3 | public function getInfoUrl() |
|
67 | } |
||
68 |