SproutCMS

This is the code documentation for the SproutCMS project

class SitemapGenHome

Tool to generate a sitemap entry for the home page(s)

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-28
**/
class NewClassName extends SitemapGenHome {
    
    /**
    * Generate a single sitemap entry for the home page
    **/
    public function generate () {
        // Method code goes here
    }
    
}
?>