SproutCMS

This is the code documentation for the SproutCMS project

class textTest

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends textTest {
    
    public function testContainsFormTag ($in, $expect) {
        // Method code goes here
    }
    
    public function dataContainsFormTag () {
        // Method code goes here
    }
    
    public function testLimitedSubsetHtml ($in, $expect) {
        // Method code goes here
    }
    
    public function testLcToCamelCaps ($in, $expect) {
        // Method code goes here
    }
    
    /**
    * lower_case -&gt; camelCase
    **/
    public function dataLcToCamelCase () {
        // Method code goes here
    }
    
    public function testLcToCamelCase ($in, $expect) {
        // Method code goes here
    }
    
    /**
    * camelCase -&gt; lower_case
    **/
    public function dataCamelToLc () {
        // Method code goes here
    }
    
    /**
    * Text::richtext with a block tag specified
    **/
    public function testRichtextBlockTag ($text, $tag, $expect) {
        // Method code goes here
    }
    
    public function dataLimitedSubsetHtml () {
        // Method code goes here
    }
    
    public function testCamelToLc ($in, $expect) {
        // Method code goes here
    }
    
    /**
    * lower_case -&gt; CamelCaps
    **/
    public function dataLcToCamelCaps () {
        // Method code goes here
    }
    
    /**
    * Text::richtext with a block tag specified
    **/
    public function dataRichtextBlockTag () {
        // Method code goes here
    }
    
    /**
    * Text::richtext
    **/
    public function testRichtext ($text, $expect) {
        // Method code goes here
    }
    
    public function dataPlain () {
        // Method code goes here
    }
    
    public function testPlain ($html, $limit, $expect) {
        // Method code goes here
    }
    
    /**
    * Text::richtext
    **/
    public function dataRichtext () {
        // Method code goes here
    }
    
    public function dataCensor () {
        // Method code goes here
    }
    
    public function testCensor ($original, $expect, $partial) {
        // Method code goes here
    }
    
    public function testLimitWordsHtml ($html, $limit, $expect) {
        // Method code goes here
    }
    
    public function dataLimitWordsHtml () {
        // Method code goes here
    }
    
}
?>