Initial commit
Couldnt keep the history unfortunately.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<?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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user