SproutCMS

This is the code documentation for the SproutCMS project

class MapWidget

Displays a google map

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends MapWidget {
    
    /**
    * Ensure settings are sane
    **/
    public function cleanupSettings () {
        // Method code goes here
    }
    
    /**
    * Return the front-end view of this widget
    **/
    public function render (int $orientation) {
        // Method code goes here
    }
    
    /**
    * Return the settings form for this widget
    **/
    public function getSettingsForm () {
        // Method code goes here
    }
    
    /**
    * Returns a label which describes the contents of this widget
    * See {@link Widget::get_info_label} for full documentation
    **/
    public function getInfoLabels () {
        // Method code goes here
    }
    
}
?>