1 | <?php |
||
18 | class CustomSitesCollection |
||
19 | { |
||
20 | /** @var array $custom_sites_collection Custom site definitions */ |
||
21 | protected $custom_sites_collection = [ |
||
22 | 'ok' => |
||
23 | [ |
||
24 | 'host' => 'ok.ru', |
||
25 | 'name' => 'Odnoklassniki', |
||
26 | 'extract' => [ |
||
27 | '!ok.ru/video/(?<id>\\d+)!', |
||
28 | '!ok.ru/live/(?<id>\\d+)!', |
||
29 | ], |
||
30 | 'iframe' => ['src' => 'https://ok.ru/videoembed/{@id}'] |
||
31 | ], |
||
32 | ]; |
||
33 | |||
34 | /** |
||
35 | * Get custom site definitions array for media embedding |
||
36 | * |
||
37 | * @return array An array of custom site definitions |
||
38 | */ |
||
39 | public function get_custom_sites_collection() |
||
43 | } |
||
44 |