11 lines
203 B
PHP
11 lines
203 B
PHP
<?php
|
|
|
|
/**
|
|
* AKA the Management Panel.
|
|
*/
|
|
class DashboardController extends Controller {
|
|
public function showDashboard() {
|
|
return 'Coming soon... <a href="/">Back to Status Page.</a>';
|
|
}
|
|
}
|