Showing and editing of the home page
This is the code documentation for the SproutCMS project
Search documentation |
class HomePageAdminControllerShowing and editing of the home page
Extending this class<?php /** * New class description goes here * * @author Your Name, 2024-11-25 **/ 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 "Visibility" **/ 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 } } ?> |
Powered by Pelzini, version 0.9.0 |
Documentation is made available under the
GNU Free Documentation License 1.2. Generated: Monday, 3rd April, 2023 at 02:59 pm |