-
Notifications
You must be signed in to change notification settings - Fork 4
/
VideoEmbedTags.php
executable file
·47 lines (37 loc) · 1.13 KB
/
VideoEmbedTags.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
<?php
namespace Statamic\Addons\VideoEmbed;
use Statamic\Extend\Tags;
class VideoEmbedTags extends Tags
{
private $videoembed;
protected function init()
{
$this->videoembed = new VideoEmbed;
}
public function index()
{
$value = $this->getParam('src');
$autoplay = $this->getParam('autoplay', null);
$loop = $this->getParam('loop', null);
$api = $this->getParam('api', null);
$showinfo = $this->getParam('showinfo', null);
$controls = $this->getParam('controls', null);
return $this->videoembed->getVideoSrc($value, $autoplay, $loop, $api, $showinfo, $controls);
}
public function link()
{
$value = $this->getParam('src');
return $this->videoembed->getVideoLink($value);
}
public function videoId()
{
$value = $this->getParam('src');
return $this->videoembed->getVideoId($value);
}
public function aspectRatio()
{
$height = $this->getParam('height');
$width = $this->getParam('width');
return $this->videoembed->getAspectRatio($height, $width);
}
}