-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo_embed.php
69 lines (51 loc) · 2.35 KB
/
video_embed.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
class VideoEmbed {
// Supported video services
protected $services = ["vimeo", "youtube"];
// Video details
public $video_service;
public $video_id;
public $video_url = "";
// Settings
public $secure = false;
public $autoplay = false;
public $width = 420;
public $height = 315;
// Constructor
// Single array for options
public function __construct($options = []) {
// Settings
$this->secure = isset($options["secure"]) ? $options["secure"] : $this->secure;
$this->autoplay = isset($options["autoplay"]) ? $options["autoplay"] : $this->autoplay;
$this->width = isset($options["width"]) ? (int)$options["width"] : $this->width;
$this->height = isset($options["height"]) ? (int)$options["height"] : $this->height;
}
// Generate embed code
// Pass video_id
// video_service (defaults to youtube)
// options (or leave blank for defaults / constructor options
public function get_embed($video_id, $video_service = "youtube", $options = []) {
// Video details
$this->video_service = (string)$video_service;
$this->video_id = (string)$video_id;
// Settings
$this->secure = isset($options["secure"]) ? $options["secure"] : $this->secure;
$this->autoplay = isset($options["autoplay"]) ? $options["autoplay"] : $this->autoplay;
$this->width = isset($options["width"]) ? (int)$options["width"] : $this->width;
$this->height = isset($options["height"]) ? (int)$options["height"] : $this->height;
// Generate the correct embed code
if(in_array(strtolower($this->video_service), $this->services)) {
$func_name = $this->video_service . "_embed";
return $this->$func_name();
}
}
// Generate YouTube embed code
protected function youtube_embed() {
return '<iframe src="http' . ($this->secure ? "s" : "") . '://www.youtube.com/embed/' . $this->video_id . '?rel=0' . ($this->autoplay ? "&autoplay=1" : "") . '" width="' . $this->width . '" height="' . $this->height . '" frameborder="0" allowfullscreen></iframe>';
}
// Generate Vimeo embed code
protected function vimeo_embed() {
return '<iframe src="http' . ($this->secure ? "s" : "") . '://player.vimeo.com/video/' . $this->video_id . ($this->autoplay ? "?autoplay=1" : "") . '" width="' . $this->width . '" height="' . $this->height . '" frameborder="0" allowFullScreen></iframe>';
}
}
?>