Example #1
0
 /**
  * Add a video's JS and CSS components.
  * This does not create the video's required HTML components.
  *
  * @param string $video_id
  *   The ID for the video.
  * @param array $settings
  *   The settings for the video.
  */
 public static function add($video_id, $settings)
 {
     self::initDisplay();
     JS::set('videos.' . $video_id, $settings);
     JS::startup('lightning.video.init()');
 }