SproutCMS

This is the code documentation for the SproutCMS project

class Tinymce4Controller

Link library, image library, etc

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-15
**/
class NewClassName extends Tinymce4Controller {
    
    /**
    * Show a gallery of video categories
    **/
    public function video () {
        // Method code goes here
    }
    
    /**
    * Show a gallery of videos for a given category
    **/
    public function videoList ($category_id) {
        // Method code goes here
    }
    
    /**
    * Show video search results
    **/
    public function videoSearch () {
        // Method code goes here
    }
    
    /**
    * UI for uploading files
    **/
    public function upload () {
        // Method code goes here
    }
    
    /**
    * Show a gallery of image categories
    **/
    public function gallery () {
        // Method code goes here
    }
    
    /**
    * Browse an RTE library
    **/
    public function libraryBrowse (string $class_name) {
        // Method code goes here
    }
    
    /**
    * Search rte libraries
    **/
    public function librarySearch () {
        // Method code goes here
    }
    
    /**
    * Show a list of RTE libraries
    **/
    public function library () {
        // Method code goes here
    }
    
    /**
    * Show the various sizes to choose from
    **/
    public function imageSize ($file_id) {
        // Method code goes here
    }
    
    /**
    * Show image search results
    **/
    public function imageSearch () {
        // Method code goes here
    }
    
    /**
    * Show a gallery of image categories
    **/
    public function image () {
        // Method code goes here
    }
    
    /**
    * Show a gallery of images for a given category
    **/
    public function imageList ($category_id) {
        // Method code goes here
    }
    
    public function __construct () {
        // Method code goes here
    }
    
    /**
    * Initialises a new search toolbar
    **/
    protected function initToolbar (string $type) {
        // Method code goes here
    }
    
}
?>