SproutCMS

This is the code documentation for the SproutCMS project

class FrameFiller

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-05-06
**/
class NewClassName extends FrameFiller {
    
    public function __construct ($width, $frame) {
        // Method code goes here
    }
    
    public function setFrameAt ($at, $val) {
        // Method code goes here
    }
    
    public function getFrameAt ($at) {
        // Method code goes here
    }
    
    public function next () {
        // Method code goes here
    }
    
}
?>