diff --git a/src/EventSubscriber/UwCblRemoteVideoEventSubscriber.php b/src/EventSubscriber/UwCblRemoteVideoEventSubscriber.php index 9e48644a1e5591882593b7cd253a660267b557d8..af789565fa843e5d831afff8230a521aac78848e 100644 --- a/src/EventSubscriber/UwCblRemoteVideoEventSubscriber.php +++ b/src/EventSubscriber/UwCblRemoteVideoEventSubscriber.php @@ -69,6 +69,12 @@ class UwCblRemoteVideoEventSubscriber extends UwCblBase implements EventSubscrib // Set the type of video to YouTube. $remote_video['view']['type'] = 'YouTube'; } + // Check for YouTube playlist. + elseif (preg_match($pattern = '/^(https?:\/\/)?(www\.)?(youtube\.com|youtu\.?be)\/(playlist\?list=)([a-zA-Z0-9_-]+)$/', $remote_video['view']['url'])) { + + // Set the type of video to YouTube playlist. + $remote_video['view']['type'] = 'YouTube playlist'; + } // Check for Vimeo. elseif (strrpos($remote_video['view']['url'], 'vimeo')) {