SproutCMS

This is the code documentation for the SproutCMS project

class ActionLogAdminController

Handles admin processing for the action log, which is a record of changes to database content

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends ActionLogAdminController {
    
    /**
    * List if recent logins
    **/
    public function _extraLoginAttempts () {
        // Method code goes here
    }
    
    public function cronCleanup () {
        // Method code goes here
    }
    
    public function _editSave ($item_id) {
        // Method code goes here
    }
    
    public function _getAddForm () {
        // Method code goes here
    }
    
    /**
    * List of tools
    **/
    public function _getTools () {
        // 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;
    * 
    * Key is the field name, value is the field label
    **/
    public function _getVisibilityFields () {
        // Method code goes here
    }
    
    /**
    * Mods
    **/
    protected function _editPreRender ($view, $item_id) {
        // Method code goes here
    }
    
    /**
    * Shows a list of tables
    **/
    public function _getNavigation () {
        // Method code goes here
    }
    
    public function _addSave ($item_id) {
        // Method code goes here
    }
    
    public function _isEditSaved ($item_id) {
        // Method code goes here
    }
    
    /**
    * Constructor
    **/
    public function __construct () {
        // Method code goes here
    }
    
}
?>