Cambiada la estructura de todo el panel
Cambiada la estructura de index, añadidos archivos php con cada vista del panel principal
This commit is contained in:
21
panel_manager/panel_manager.php
Normal file
21
panel_manager/panel_manager.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
class Panel {
|
||||
public $state;
|
||||
|
||||
function __construct($panel){
|
||||
$this->state = $panel;
|
||||
}
|
||||
|
||||
function showPanel() {
|
||||
switch($this->state) {
|
||||
case 'us_u': require('user_unregistered_view.php'); break;
|
||||
case 'us_r': require('user_registered_view.php'); break;
|
||||
case 'rooms': require('manage_rooms.php'); break;
|
||||
case 'sessions': require('manage_sessions.php'); break;
|
||||
default: echo "<h1>BIENVENIDO AL PANEL DE GERENTE </h1>
|
||||
<br>
|
||||
<p> Espero que este pasando un buen dia </p>\n"; break;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user