Handles most processing for Cron Jobs
This is the code documentation for the SproutCMS project
Search documentation |
class CronJobAdminControllerHandles most processing for Cron Jobs
Extending this class<?php
/**
* New class description goes here
*
* @author Your Name, 2026-09-15
**/
class NewClassName extends CronJobAdminController {
/**
* Manually runs a cron job
**/
public function manualRunAction () {
// Method code goes here
}
/**
* UI for running cron jobs manually
**/
public function _extraManualRun () {
// Method code goes here
}
public function _getAddForm () {
// Method code goes here
}
public function _addSave ($item_id) {
// Method code goes here
}
public function _editSave ($item_id) {
// Method code goes here
}
public function _getNavigation () {
// 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
}
/**
* Constructor
**/
public function __construct () {
// Method code goes here
}
/**
* Returns the contents of the navigation pane for the list
**/
public function _getTools () {
// 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 |
|