Initial commit

This commit is contained in:
Porawit Dongwang
2026-09-16 23:20:08 +07:00
commit 0041668dbb
32577 changed files with 3687927 additions and 0 deletions
@@ -0,0 +1,20 @@
<?php
namespace app\Controllers;
class ManualController extends Controller {
public function __construct() {
if (empty($_SESSION['user_id'])) {
header('Location: ' . BASE_URL . '/login');
exit;
}
}
public function index() {
$this->view('manual/index', [
'title' => 'คู่มือการใช้งาน | ' . APP_NAME,
'activeMenu' => 'manual'
]);
}
}
?>