YaWK  24.1
Yet another WebKit
youtube.php
Go to the documentation of this file.
1 <?php
2 /** @var $db \YAWK\db */
3 // check if youtube obj is loaded
4 if(!isset($youtube) || (empty($youtube)))
5 { // not set, include yt widget class
6  require_once ('classes/youtube.php');
7  // create yt widget object
8  $youtube = new \YAWK\WIDGETS\YOUTUBE\VIDEO\youtube($db);
9 }
10 // embed yt video
11 $youtube->embedVideo();