Add config database table and enable crud page. Also add cache controller, model and view and routes for these pages. Make the JavaScript display a message when changing the state of development mode.
25 lines
395 B
PHP
25 lines
395 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Classes\User;
|
|
|
|
class AdminController extends PageController {
|
|
|
|
public function indexAction(): void {
|
|
$this->router->service()->user = User::getUser();
|
|
|
|
parent::view('', 'Admin');
|
|
}
|
|
|
|
public function toggleAction(): void {
|
|
User::toggle();
|
|
echo User::getToggle() ? '1' : '0';
|
|
}
|
|
|
|
public function syntaxAction(): void {
|
|
parent::view();
|
|
}
|
|
|
|
}
|