File "DashboardController.php"

Full Path: C:/wamp64/www/Actas_Usuarios/controllers/DashboardController.php
File size: 433 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
// controllers/DashboardController.php

class DashboardController
{
    // GET ?page=dashboard  →  menú principal
    public function index(): void
    {
        if (!isset($_SESSION['DIGITA'])) {
            header('Location: index.php?page=login');
            exit;
        }

        $usuario = $_SESSION['NOMBRE'] ?? $_SESSION['DIGITA'];
        require __DIR__ . '/../views/dashboard/menu.php';
    }
}