SproutCMS

This is the code documentation for the SproutCMS project

class VideoPlaylistWidget

Renders a gallery of videos

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends VideoPlaylistWidget {
    
    /**
    * Renders the front-end view of this widget
    **/
    public function render (int $orientation) {
        // Method code goes here
    }
    
    /**
    * Renders the admin settings form for this widget
    **/
    public function getSettingsForm () {
        // Method code goes here
    }
    
    /**
    * Request YouTube playlist data for given URL
    **/
    private function requestYoutubePlaylist (string $video_url) {
        // Method code goes here
    }
    
}
?>