SproutCMS

This is the code documentation for the SproutCMS project

class RteLibContainer

Returned by RteLibrary classes to represent a "container" (e.g. directories) in the browse structure

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-12
**/
class NewClassName extends RteLibContainer {
    
    public function getName () {
        // Method code goes here
    }
    
    public function getLabel () {
        // Method code goes here
    }
    
    public function __construct ($name, $label) {
        // Method code goes here
    }
    
}
?>