SproutCMS

This is the code documentation for the SproutCMS project

class RefineWidgetAutocomplete

An autocomplete widget for the refine bar

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-08-16
**/
class NewClassName extends RefineWidgetAutocomplete {
    
    public function __construct (string $name, string $label, array $options) {
        // Method code goes here
    }
    
    /**
    * Draws the widget.
    **/
    public function render () {
        // Method code goes here
    }
    
}
?>