Dashboard shown when a user first logs in to the admin
This is the code documentation for the SproutCMS project
| Search documentation | class AdminDashboardDashboard shown when a user first logs in to the admin 
 Extending this class<?php
/**
* New class description goes here
* 
* @author Your Name, 2025-11-01
**/
class NewClassName extends AdminDashboard {
    
    /**
    * A button to moderate content, if there is actually content to moderate
    **/
    private function moderationButton () {
        // Method code goes here
    }
    
    /**
    * A list of "need approval" pages currently in the system
    **/
    private function needApproval () {
        // Method code goes here
    }
    
    /**
    * A list of new content (pages, files, etc)
    **/
    private function newContent () {
        // Method code goes here
    }
    
    /**
    * Show the "first run" message, which welcomes new operators to the admin
    **/
    private function firstRun () {
        // Method code goes here
    }
    
    /**
    * Render the admin dashboard
    **/
    public function render () {
        // 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 |   |