151 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
    //General Config File:
 | 
						|
    include_once('../assets/php/config.php');
 | 
						|
 | 
						|
	include_once('../assets/php/common/cinema.php');	
 | 
						|
    include_once(__DIR__.'/includes/formCinema.php');	
 | 
						|
 | 
						|
 
 | 
						|
   
 | 
						|
    // View functions
 | 
						|
	/*function drawCinema(){	
 | 
						|
        $cine = new Cinema_DAO("complucine");
 | 
						|
        $cinemas = $cine->allCinemaData();
 | 
						|
        echo "<div class='column left'>
 | 
						|
        <table class='alt'>
 | 
						|
            <thead>
 | 
						|
            <tr>
 | 
						|
                <th>Id</th>
 | 
						|
                <th>Nombre</th>
 | 
						|
                <th>Direccion</th>
 | 
						|
                <th>Telefono</th>
 | 
						|
            </tr>
 | 
						|
            </thead>
 | 
						|
            <tbody>"; 
 | 
						|
        foreach($cinemas as $f){ 
 | 
						|
        echo '
 | 
						|
            <tr>
 | 
						|
                <td>'. $f->getId() .'</td>
 | 
						|
                <td>'. $f->getName() .'</td>
 | 
						|
                <td>'. $f->getDirection() .'</td>
 | 
						|
                <td>'. $f->getPhone() .'</td>
 | 
						|
                <td>
 | 
						|
                    <form method="post" action="index.php?state=mc">
 | 
						|
                        <input  name="id" type="hidden" value="'.$f->getId().'">
 | 
						|
                        <input  name="name" type="hidden" value="'.$f->getName().'">
 | 
						|
                        <input  name="direction" type="hidden" value="'.$f->getDirection().'">
 | 
						|
                        <input  name="phone" type="hidden" value="'.$f->getPhone().'">
 | 
						|
                        <input type="submit" id="submit" value="Editar" name="edit_cinema" class="primary" />
 | 
						|
                    </form> 
 | 
						|
                </td> 
 | 
						|
                <td> 
 | 
						|
                    <form method="post" action="index.php?state=mc">
 | 
						|
                        <input  name="id" type="hidden" value="'.$f->getId().'">
 | 
						|
                        <input  name="name" type="hidden" value="'.$f->getName().'">
 | 
						|
                        <input  name="direction" type="hidden" value="'.$f->getDirection().'">
 | 
						|
                        <input  name="phone" type="hidden" value="'.$f->getPhone().'">
 | 
						|
                        <input type="submit" id="submit" value="Eliminar" name="delete_cinema" class="primary" />
 | 
						|
                    </form> 
 | 
						|
                </td> 
 | 
						|
                </tr>'; 
 | 
						|
                } 
 | 
						|
        echo'<tbody>
 | 
						|
            </table>
 | 
						|
            </div>';
 | 
						|
	}*/
 | 
						|
    function addCinema(){
 | 
						|
        echo'<div class="column">
 | 
						|
        <h2>Añadir cine</h2>
 | 
						|
        <form method="post" action="index.php?state=mc">
 | 
						|
            <div class="row">
 | 
						|
            <fieldset id="cinema_form">
 | 
						|
                <legend>Datos del Cine</legend>
 | 
						|
                <div>
 | 
						|
                    <input type="text" name="name" id="name" placeholder="Nombre" />
 | 
						|
                </div>
 | 
						|
                <div>
 | 
						|
                    <input type="text" name="direction" id="direction" placeholder="Direccion" />
 | 
						|
                </div>
 | 
						|
                <div>
 | 
						|
                    <input type="text" name="phone" id="phone" placeholder="Teléfono" />
 | 
						|
                </div>
 | 
						|
                </fieldset>
 | 
						|
                <div class="actions"> 
 | 
						|
                    <input type="submit" id="submit" value="Añadir cine" name="add_cinema" class="primary" />
 | 
						|
                    <input type="reset" id="reset" value="Borrar" />       
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
                </form>
 | 
						|
                </div>';
 | 
						|
    }
 | 
						|
    function deleteCinema() {
 | 
						|
        echo'<div class="column">
 | 
						|
        <h2>Editar cine</h2>
 | 
						|
        <form method="post" action="index.php?state=mc">
 | 
						|
            <div class="row">
 | 
						|
            <fieldset id="cinema_form">
 | 
						|
                <legend>¿Estás seguro de que quieres eliminar este cine?</legend>
 | 
						|
                <input type="hidden" name="id" value='.$_POST['id'].'/>
 | 
						|
                <p>Id: '.$_POST['id'].' </p>
 | 
						|
                <p>Nombre: '.$_POST['name'].' </p>
 | 
						|
                <p>Dirección: '.$_POST['direction'].' </p>
 | 
						|
                <p>Teléfono: '.$_POST['phone'].' </p>
 | 
						|
                </fieldset>
 | 
						|
                <div class="actions"> 
 | 
						|
                    <input type="submit" id="submit" value="Eliminar" name="confirm_delete_cinema" class="primary" />
 | 
						|
                    <input type="submit" id="submit" value="Cancelar" name="cancel_delete_cinema" class="primary" />
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
                </form>
 | 
						|
                </div>';
 | 
						|
    }
 | 
						|
    function editCinema() {
 | 
						|
        echo'<div class="column">
 | 
						|
        <h2>Editar cine</h2>
 | 
						|
        <form method="post" action="index.php?state=mc">
 | 
						|
            <div class="row">
 | 
						|
            <fieldset id="cinema_form">
 | 
						|
                <legend>Datos del cine</legend>
 | 
						|
                <input type="hidden" name="id" value='.$_POST['id'].'/>
 | 
						|
                <div>
 | 
						|
                    <input type="text" name="name" value="'.$_POST['name'].'" />
 | 
						|
                </div>
 | 
						|
                <div>
 | 
						|
                    <input type="text" name="direction" value='.$_POST['direction'].' />
 | 
						|
                </div>
 | 
						|
                <div>
 | 
						|
                    <input type="text" name="phone"  value='.$_POST['phone'].' />
 | 
						|
                </div>
 | 
						|
                </fieldset>
 | 
						|
                <div class="actions"> 
 | 
						|
                    <input type="submit" id="submit" value="Editar" name="confirm_edit_cinema" class="primary" />
 | 
						|
                    <input type="reset" id="reset" value="Borrar" />       
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
                </form>
 | 
						|
                </div>';
 | 
						|
    }
 | 
						|
 | 
						|
    // Logic Functions
 | 
						|
    function confirmDelete() {
 | 
						|
        $cine = new FormCinema();
 | 
						|
        $cine->processesForm($_POST['id'],null,null,null,"del");
 | 
						|
        $_SESSION['message'] = $cine->getReply();
 | 
						|
        header('Location: ../panel_admin/index.php?state=mc');
 | 
						|
    }
 | 
						|
    function confirmEdit() {
 | 
						|
        $cine = new FormCinema();
 | 
						|
        $cine->processesForm($_POST['id'], $_POST['name'], $_POST['direction'], $_POST['phone'],"edit");
 | 
						|
        $_SESSION['message']= $cine->getReply();
 | 
						|
        header('Location: ../panel_admin/index.php?state=mc');
 | 
						|
    }
 | 
						|
    function confirmAdd() {
 | 
						|
        $cine = new FormCinema();
 | 
						|
        $cine->processesForm(null, $_POST['name'], $_POST['direction'], $_POST['phone'],"new");
 | 
						|
        $_SESSION['message'] = $cine->getReply();
 | 
						|
        header('Location: ../panel_admin/index.php?state=mc');
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
?>
 |