SproutCMS

This is the code documentation for the SproutCMS project

class QRsplit

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-28
**/
class NewClassName extends QRsplit {
    
    public function splitStringToQRinput ($string, QRinput $input, $modeHint, $casesensitive) {
        // Method code goes here
    }
    
    public function splitString () {
        // Method code goes here
    }
    
    public function toUpper () {
        // Method code goes here
    }
    
    public function identifyMode ($pos) {
        // Method code goes here
    }
    
    public function eatNum () {
        // Method code goes here
    }
    
    public function eatAn () {
        // Method code goes here
    }
    
    public function eatKanji () {
        // Method code goes here
    }
    
    public function eat8 () {
        // Method code goes here
    }
    
    public function isdigitat ($str, $pos) {
        // Method code goes here
    }
    
    public function isalnumat ($str, $pos) {
        // Method code goes here
    }
    
    public function __construct ($dataStr, $input, $modeHint) {
        // Method code goes here
    }
    
}
?>