SproutCMS

This is the code documentation for the SproutCMS project

class CaptchaController

Used for generating CAPTCHA images and explanatory text

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-15
**/
class NewClassName extends CaptchaController {
    
    /**
    * Render a CAPTCHA image
    * See https://en.wikipedia.org/wiki/CAPTCHA for information about CAPTCHAs
    **/
    public function image (int $num) {
        // Method code goes here
    }
    
    /**
    * Output info about CAPTCHAs; should be displayed in a popup
    **/
    public function about () {
        // Method code goes here
    }
    
}
?>