Handles admin processing for Words
This is the code documentation for the SproutCMS project
Search documentation |
class WordAdminControllerHandles admin processing for Words
Extending this class<?php /** * New class description goes here * * @author Your Name, 2024-11-25 **/ class NewClassName extends WordAdminController { /** * Pre-render hook for adding **/ protected function _addPreRender ($view) { // Method code goes here } /** * Return the sub-actions for adding; for spec {@see AdminController::renderSubActions} **/ public function _getAddSubActions () { // Method code goes here } /** * Saves the provided POST data into a new record in the database **/ public function _addSave (int $item_id) { // Method code goes here } /** * Pre-render hook for editing **/ protected function _editPreRender ($view, $item_id) { // Method code goes here } /** * Return the sub-actions for editing; for spec {@see AdminController::renderSubActions} **/ public function _getEditSubActions ($item_id) { // Method code goes here } /** * Process the saving of a record. **/ public function _editSave (int $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: Monday, 3rd April, 2023 at 02:59 pm |