SproutCMS

This is the code documentation for the SproutCMS project

class Constants

A bunch of different constants

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-08-23
**/
class NewClassName extends Constants {
    
    /**
    * Looks for a class constant which has a specific value.
    **/
    public function reverseLookup (string $class, string $prefix, string $value) {
        // Method code goes here
    }
    
}
?>