SproutCMS

This is the code documentation for the SproutCMS project

class HomePageAdminController

Showing and editing of the home page

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-05-07
**/
class NewClassName extends HomePageAdminController {
    
    public function _getAddForm () {
        // Method code goes here
    }
    
    public function _addSave ($id) {
        // Method code goes here
    }
    
    /**
    * Return the fields to show in the sidebar when adding or editing a record.
    * These fields are shown under a heading of &quot;Visibility&quot;
    **/
    public function _getVisibilityFields () {
        // Method code goes here
    }
    
    public function _identifier (array $row) {
        // Method code goes here
    }
    
    /**
    * Proxies navigation to the 'page' controller.
    **/
    public function _getNavigation () {
        // Method code goes here
    }
    
    /**
    * Proxies tools to the 'page' controller.
    **/
    public function _getTools () {
        // Method code goes here
    }
    
    /**
    * Gets the name of the controller to use for the top nav
    **/
    public function getTopnavName () {
        // Method code goes here
    }
    
}
?>