mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
18 lines
356 B
PHP
Executable File
18 lines
356 B
PHP
Executable File
<?php
|
|
$session = session();
|
|
$viewMode = $session->get('view_mode');
|
|
|
|
switch ($viewMode) {
|
|
case config("Safekat")->vista_maquetacion:
|
|
include "menu_maquetacion.php";
|
|
break;
|
|
case config("Safekat")->vista_digitalizacion:
|
|
include "menu_digitalizacion.php";
|
|
break;
|
|
default:
|
|
include "menu_impresion.php";
|
|
}
|
|
|
|
|
|
|