| 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 | protected function videoId() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the default URL queries. |
||
| 27 | * |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | 3 | protected function defaultQueries() |
|
| 34 | |||
| 35 | /** |
||
| 36 | * Get the iframe pattern. |
||
| 37 | * |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | protected function getIframePattern() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the iframe replace. |
||
| 47 | * |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | protected function getIframeReplacer() |
||
| 54 | } |
||
| 55 |