SproutCMS

This is the code documentation for the SproutCMS project

class MySettingsAdminController

Changes settings for the currently logged in user

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-09
**/
class NewClassName extends MySettingsAdminController {
    
    public function _getTools () {
        // Method code goes here
    }
    
    /**
    * UI for updating details of the currently logged-in operator
    **/
    public function _extraDetails () {
        // Method code goes here
    }
    
    /**
    * Action to update operator details for the currently logged-in operator
    **/
    public function detailsAction () {
        // Method code goes here
    }
    
    /**
    * Show a UI to either setup TFA or to disable TFA
    **/
    public function _extraTwoFactor () {
        // Method code goes here
    }
    
    /**
    * Setup TFA using the TOTP method
    **/
    public function tfaTotpSetupAction () {
        // Method code goes here
    }
    
    /**
    * Disable TFA
    **/
    public function tfaDisableAction () {
        // Method code goes here
    }
    
    public function _intro () {
        // Method code goes here
    }
    
    public function _getNavigation () {
        // Method code goes here
    }
    
}
?>