New index and panelAdmin class
This commit is contained in:
committed by
GitHub
parent
6f4ec68a14
commit
e70bfdff7a
20
panel_admin/panelAdmin.php
Normal file
20
panel_admin/panelAdmin.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
class Panel {
|
||||
public $state;
|
||||
|
||||
function __construct($panel){
|
||||
$this->state = $panel;
|
||||
}
|
||||
|
||||
function showPanel() {
|
||||
switch($this->state) {
|
||||
case 'mc': require('manage_cinemas.php'); break;
|
||||
case 'mf': require('manage_films.php'); break;
|
||||
case 'md': require('manage_discounts.php'); break;
|
||||
case 'mm': require('manage_managers.php'); break;
|
||||
default: echo "<h1>BIENVENIDO AL PANEL DE ADMINISTRADOR</h1>"; break;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
Reference in New Issue
Block a user