Handles admin processing for the action log, which is a record of changes to database content
This is the code documentation for the SproutCMS project
Search documentation |
class ActionLogAdminControllerHandles 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 "Visibility"
*
* 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
}
}
?>
|
| Powered by Pelzini, version 0.9.0 |
Documentation is made available under the
GNU Free Documentation License 1.2. Generated: Tuesday, 15th September, 2026 at 10:26 am |
|