This commit is contained in:
Daniel Muñoz Garcia 2021-05-06 12:18:20 +02:00 committed by GitHub
parent 042333b96c
commit 5ee09a12de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 146 additions and 58 deletions

View File

@ -5,25 +5,28 @@
include_once('../assets/php/common/manager.php');
include_once('../assets/php/common/cinema_dao.php');
include_once('../assets/php/common/user_dao.php');
include_once(__DIR__.'/includes/formManager.php');
// View functions
function print_managers(){
$manager = new Manager_DAO("complucine");
$managers = $manager->allManagersData();
$ids = array();
$idscinemas = array();
$usernames = array();
$email = array();
$pass = array();
$rol = array();
foreach($managers as $key => $value){
$ids[$key] = $value->getId();
$idscinemas[$key] = $value->getIdcinema();
$usernames[$key] = $value->getUsername();
$email[$key] = $value->getEmail();
$pass[$key] = $value->getPass();
$rol[$key] = $value->getRoll();
}
@ -35,6 +38,7 @@
<thead>
<tr>
<th>Id</th>
<th>IdCinema</th>
<th>Nombre</th>
<th>Email</th>
<th>password</th>
@ -43,29 +47,29 @@
</thead>
<tbody>
";
for($i = 0; $i < count($promos); $i++){
for($i = 0; $i < count($managers); $i++){
echo '<tr>
<td>'. $ids[$i] .'</td>
<td>'. $idscinemas[$i] .'</td>
<td>'. $usernames[$i] .'</td>
<td>'. $email[$i] .'</td>
<td>'. $pass[$i] .'</td>
<td>'. $rol[$i] .'</td>
<td>
<form method="post" action="index.php?state=mp">
<form method="post" action="index.php?state=mg">
<input name="id" type="hidden" value="'.$ids[$i].'">
<input name="idcinema" type="hidden" value="'.$idscinemas[$i].'">
<input name="username" type="hidden" value="'.$usernames[$i].'">
<input name="email" type="hidden" value="'.$email[$i].'">
<input name="pass" type="hidden" value="'.$pass[$i].'">
<input name="rol" type="hidden" value="'.$rol[$i].'">
<input type="submit" id="submit" value="Editar" name="edit_manager" class="primary" />
</form>
</td>
<td>
<form method="post" action="index.php?state=mp">
<form method="post" action="index.php?state=mg">
<input name="id" type="hidden" value="'.$ids[$i].'">
<input name="idcinema" type="hidden" value="'.$idscinemas[$i].'">
<input name="username" type="hidden" value="'.$usernames[$i].'">
<input name="email" type="hidden" value="'.$email[$i].'">
<input name="pass" type="hidden" value="'.$pass[$i].'">
<input name="rol" type="hidden" value="'.$rol[$i].'">
<input type="submit" id="submit" value="Eliminar" name="delete_manager" class="primary" />
</form>
@ -78,6 +82,8 @@
</div>
<div class="column side"></div>
';
}
@ -85,25 +91,9 @@
echo' <div class="column side"></div>
<div class="column middle">
<h2>Añadir gerente</h2>
<form method="post" action="index.php?state=mp">
<fieldset id="manager_form">
<legend>Datos del manager </legend>
<div>
<input type="text" name="username" id="username" placeholder="Nombre" />
</div>
<div>
<input type="email" name="email" id="email" placeholder="email" />
</div>
<div>
<input type="text" name="pass" id="pass" placeholder="password" />
</div>
<div>
<input type="text" name="pass2" id="pass2" placeholder="confirm password" />
</div>
</fieldset>
<form method="post" action="index.php?state=mg">
<div class="actions">
<input type="submit" id="submit" value="Añadir gerente" name="add_manager" class="primary" />
<input type="reset" id="reset" value="Borrar" />
<input type="submit" id="submit" value="Añadir gerente" name="select_user" class="primary" />
</div>
</form>
</div>
@ -111,19 +101,66 @@
</div>
';
}
function selectUser() {
echo'<div class="column side"></div>
<div class="column middle">
<h2>Selecciona el usuario al que quieres dar privilegios.</h2>
<form method="post" action="index.php?state=mg">
<div class="row">
<fieldset id="manager_form">
<legend>Selecciona usuario.</legend>';
showUsers();
echo '</fieldset>
<div class="actions">
<input type="submit" id="submit" value="Seleccionar" name="select_cinema" class="primary" />
<input type="reset" id="reset" value="Borrar" />
</div>
</div>
</form>
</div>
<div class="column side"></div>
';
}
function selectCinema() {
echo'<div class="column side"></div>
<div class="column middle">
<h2>Selecciona el cine asociado al nuevo manager.</h2>
<form method="post" action="index.php?state=mg">
<div class="row">
<fieldset id="manager_form">
<legend>Selecciona cine.</legend>';
showCinemas();
echo '</fieldset>
<div class="actions">
<input name="iduser" type="hidden" value="'.$_POST['iduser'].'">
<input type="submit" id="submit" value="Seleccionar" name="add_manager" class="primary" />
<input type="reset" id="reset" value="Borrar" />
</div>
</div>
</form>
</div>
<div class="column side"></div>
';
}
function deleteManager() {
echo'<div class="column side"></div>
<div class="column middle">
<h2>Borrar gerente</h2>
<form method="post" action="index.php?state=mp">
<form method="post" action="index.php?state=mg">
<div class="row">
<fieldset id="promotion_form">
<legend>¿Estás seguro de que quieres eliminar este gerente?</legend>
<input type="hidden" name="id" value='.$_POST['id'].'/>
<p>Id: '.$_POST['id'].' </p>
<p>IdCinema: '.$_POST['idcinema'].' </p>
<p>Nombre: '.$_POST['username'].' </p>
<p>Email: '.$_POST['email'].' </p>
<p>Password: '.$_POST['pass'].' </p>
<p>Rol: '.$_POST['rol'].' </p>
</fieldset>
<div class="actions">
@ -136,54 +173,95 @@
<div class="column side"></div>
';
}
function editManager() {
echo'<div class="column side"></div>
<div class="column middle">
<h2>Editar gerente</h2>
<form method="post" action="index.php?state=mp">
<div class="column middle">
<h2>Editar gerente ID: '.$_POST['id'].'</h2>
<form method="post" action="index.php?state=mg">
<div class="row">
<fieldset id="promotion_form">
<legend>Datos de la promoción</legend>
<input type="hidden" name="id" value='.$_POST['id'].'/>
<div>
<input type="text" name="username" value="'.$_POST['username'].'" />
</div>
<div>
<input type="email" name="email" value='.$_POST['email'].' />
</div>
<div>
<input type="text" name="pass" value='.$_POST['pass'].' />
</div>
</fieldset>
<legend>Selecciona su cine.</legend>';
showCinemas();
echo '</fieldset>
<div class="actions">
<input type="hidden" name="id" value='.$_POST['id'].'/>
<input type="submit" id="submit" value="Editar" name="confirm_edit_manager" class="primary" />
<input type="reset" id="reset" value="Borrar" />
</div>
</div>
</form>
</div>
<div class="column side"></div>
</form>
</div>
<div class="column side"></div>
';
}
// Show cinemas and users functions
function showCinemas() {
$cine = new Cinema_DAO("complucine");
$cinemas = $cine->allCinemaData();
$ids = array();
$names = array();
$directions = array();
$phones = array();
foreach($cinemas as $key => $value){
$ids[$key] = $value->getId();
$names[$key] = $value->getName();
$directions[$key] = $value->getDirection();
$phones[$key] = $value->getPhone();
}
for($i = 0; $i < count($cinemas); $i++){
echo '
<input type="radio" name="idcinema" value='.$ids[$i].' > <label> '.$ids[$i].', '.$names[$i].'
</label>
';
}
}
function showUsers() {
$user = new UserDAO("complucine");
$users = $user->allUsersNotM();
$ids = array();
$usernames = array();
$emails = array();
$roles = array();
foreach($users as $key => $value){
$ids[$key] = $value->getId();
$usernames[$key] = $value->getName();
$emails[$key] = $value->getEmail();
$roles[$key] = $value->getRol();
}
for($i = 0; $i < count($users); $i++){
echo '
<input type="radio" name="iduser" value='.$ids[$i].' > <label> '.$ids[$i].', '.$usernames[$i].', '.$usernames[$key].'
</label>
';
}
}
// Logic Functions
function confirmDelete() {
$cine = new FormPromotion();
$cine->processesForm($_POST['id'],null,null,null,null,"del");
$cine = new FormManager();
$cine->processesForm($_POST['id'], null,"del");
$_SESSION['message'] = $cine->getReply();
header('Location: ../panel_admin/index.php?state=mp');
header('Location: ../panel_admin/index.php?state=mg');
}
function confirmEdit() {
$cine = new FormPromotion();
$cine->processesForm($_POST['id'], $_POST['username'], $_POST['email'], $_POST['pass'],"manager","edit");
$_SESSION['message']= $cine->getReply();
header('Location: ../panel_admin/index.php?state=mp');
$manager = new FormManager();
$manager->processesForm($_POST['id'], $_POST['idcinema'],"edit");
$_SESSION['message']= $manager->getReply();
header('Location: ../panel_admin/index.php?state=mg');
}
function confirmAdd() {
$cine = new FormPromotion();
$cine->processesForm(null,$_POST['username'], $_POST['email'], $_POST['pass'],"manager","new");
$_SESSION['message'] = $cine->getReply();
header('Location: ../panel_admin/index.php?state=mp');
$manager = new FormManager();
$manager->processesForm($_POST['iduser'], $_POST['idcinema'],"new");
$_SESSION['message'] = $manager->getReply();
header('Location: ../panel_admin/index.php?state=mg');
}

View File

@ -34,6 +34,9 @@
};
break;
case 'mf': require_once('manage_films.php');
//echo $_SERVER['DOCUMENT_ROOT']."/../img";
echo TMP_DIR;
//echo $_SERVER['PHP_SELF'];
if(isset($_POST['edit_film'])) {
editFilm();
}
@ -83,9 +86,16 @@
else if(isset($_POST['delete_manager'])) {
deleteManager();
}
else if(isset($_POST['select_user'])) {
selectUser();
}
else if(isset($_POST['select_cinema'])) {
selectCinema();
}
else if(isset($_POST['add_manager'])) {
confirmAdd();
}
else if(isset($_POST['confirm_delete_manager'])) {
confirmDelete();
}