mirror of
https://github.com/ThomasGsp/HyperProxmox.git
synced 2025-03-09 15:40:18 +00:00
26 lines
703 B
PHP
26 lines
703 B
PHP
<?php
|
|
|
|
/**
|
|
* This controller shows an area that's only visible for logged in users (because of Auth::checkAuthentication(); in line 16)
|
|
*/
|
|
class DashboardController extends Controller
|
|
{
|
|
/**
|
|
* Construct this object by extending the basic Controller class
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// this entire controller should only be visible/usable by logged in users, so we put authentication-check here
|
|
Auth::checkAuthentication();
|
|
}
|
|
|
|
/**
|
|
* This method controls what happens when you move to /dashboard/index in your app.
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->View->render('dashboard/index');
|
|
}
|
|
}
|