1: <?php
 2: 
 3: namespace webfilesframework\core\datasystem\file\format\media;
 4: 
 5: 
 6: use webfilesframework\core\datasystem\file\format\MWebfile;
 7: 
 8:  9: 10: 11: 12: 13: 
14: class MYoutubeVideo extends MWebfile
15: {
16: 
17:     private $m_sKey;
18: 
19: 
20:     public function getKey()
21:     {
22:         return $this->m_sKey;
23:     }
24: 
25:     public function __toString()
26:     {
27:         return "<iframe width=\"300\" height=\"169\" src=\"//www.youtube.com/embed/" . $this->m_sKey . "\" frameborder=\"0\" allowfullscreen></iframe>";
28:     }
29: }
30: