Add files via upload
This commit is contained in:
parent
3e48951b90
commit
8b4ed63f9f
@ -1,3 +1,124 @@
|
||||
<?php
|
||||
require_once('config.php');
|
||||
|
||||
?>
|
||||
/**
|
||||
* Clase que mantiene el estado global de la aplicación.
|
||||
*/
|
||||
class Aplicacion {
|
||||
private static $instancia;
|
||||
|
||||
/**
|
||||
* Permite obtener una instancia de <code>Aplicacion</code>.
|
||||
*
|
||||
* @return Applicacion Obtiene la única instancia de la <code>Aplicacion</code>
|
||||
*/
|
||||
public static function getSingleton() {
|
||||
if ( !self::$instancia instanceof self) {
|
||||
self::$instancia = new self;
|
||||
}
|
||||
return self::$instancia;
|
||||
}
|
||||
|
||||
/**
|
||||
* @var array Almacena los datos de configuración de la BD
|
||||
*/
|
||||
private $bdDatosConexion;
|
||||
|
||||
/**
|
||||
* Almacena si la Aplicacion ya ha sido inicializada.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
private $inicializada = false;
|
||||
|
||||
/**
|
||||
* @var \mysqli Conexión de BD.
|
||||
*/
|
||||
private $conn;
|
||||
|
||||
/**
|
||||
* Evita que se pueda instanciar la clase directamente.
|
||||
*/
|
||||
private function __construct() {}
|
||||
|
||||
/**
|
||||
* Evita que se pueda utilizar el operador clone.
|
||||
*/
|
||||
public function __clone() {
|
||||
throw new \Exception('No tiene sentido el clonado.');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Evita que se pueda utilizar serialize().
|
||||
*/
|
||||
public function __sleep() {
|
||||
throw new \Exception('No tiene sentido el serializar el objeto.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Evita que se pueda utilizar unserialize().
|
||||
*/
|
||||
public function __wakeup() {
|
||||
throw new \Exception('No tiene sentido el deserializar el objeto.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Inicializa la aplicación.
|
||||
*
|
||||
* @param array $bdDatosConexion datos de configuración de la BD
|
||||
*/
|
||||
public function init($bdDatosConexion) {
|
||||
if ( ! $this->inicializada ) {
|
||||
$this->bdDatosConexion = $bdDatosConexion;
|
||||
session_start();
|
||||
$this->inicializada = true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Cierre de la aplicación.
|
||||
*/
|
||||
public function shutdown() {
|
||||
$this->compruebaInstanciaInicializada();
|
||||
if ($this->conn !== null) {
|
||||
$this->conn->close();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Comprueba si la aplicación está inicializada. Si no lo está muestra un mensaje y termina la ejecución.
|
||||
*/
|
||||
private function compruebaInstanciaInicializada() {
|
||||
if (! $this->inicializada ) {
|
||||
echo "ERROR 403: app_not_configured.";
|
||||
exit();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Devuelve una conexión a la BD. Se encarga de que exista como mucho una conexión a la BD por petición.
|
||||
*
|
||||
* @return \mysqli Conexión a MySQL.
|
||||
*/
|
||||
public function conexionBd() {
|
||||
$this->compruebaInstanciaInicializada();
|
||||
if (! $this->conn ) {
|
||||
$bdHost = $this->bdDatosConexion['host'];
|
||||
$bdUser = $this->bdDatosConexion['user'];
|
||||
$bdPass = $this->bdDatosConexion['pass'];
|
||||
$bd = $this->bdDatosConexion['bd'];
|
||||
|
||||
$this->conn = new \mysqli($bdHost, $bdUser, $bdPass, $bd);
|
||||
if ( $this->conn->connect_errno ) {
|
||||
echo "Error de conexión a la BD: (" . $this->conn->connect_errno . ") " . utf8_encode($this->conn->connect_error);
|
||||
exit();
|
||||
}
|
||||
if ( ! $this->conn->set_charset("utf8mb4")) {
|
||||
echo "Error al configurar la codificación de la BD: (" . $this->conn->errno . ") " . utf8_encode($this->conn->error);
|
||||
exit();
|
||||
}
|
||||
}
|
||||
return $this->conn;
|
||||
}
|
||||
}
|
@ -31,4 +31,17 @@
|
||||
require_once('template.php');
|
||||
$template = new Template();
|
||||
$prefix = $template->get_prefix();
|
||||
|
||||
/**
|
||||
* Initialize the application:
|
||||
*/
|
||||
require_once('aplication.php');
|
||||
$app = Aplicacion::getSingleton();
|
||||
$app->init(array('host'=>BD_HOST, 'bd'=>BD_NAME, 'user'=>BD_USER, 'pass'=>BD_PASS));
|
||||
|
||||
/**
|
||||
* @see http://php.net/manual/en/function.register-shutdown-function.php
|
||||
* @see http://php.net/manual/en/language.types.callable.php
|
||||
*/
|
||||
register_shutdown_function(array($app, 'shutdown'));
|
||||
?>
|
||||
|
@ -1,37 +1,24 @@
|
||||
<?php
|
||||
// TO-DO: Completar
|
||||
class DAO {
|
||||
//Constants:
|
||||
private const _SERVERNAME = BD_HOST;
|
||||
private const _USERNAME = BD_USER;
|
||||
private const _PASSWORD = BD_PASS;
|
||||
private const _BD = BD_NAME;
|
||||
|
||||
//Atributes:
|
||||
public $mysqli;
|
||||
|
||||
//Constructor:
|
||||
public function __construct($bd_name){
|
||||
if($bd_name == null) $bd_name = self::_BD;
|
||||
try{
|
||||
if (!$this->mysqli) {
|
||||
$this->mysqli = new mysqli(self::_SERVERNAME, self::_USERNAME,
|
||||
self::_PASSWORD, $bd_name);
|
||||
}
|
||||
// echo "Conexión a la BD, satisfactoria.";
|
||||
} catch (Exception $e){
|
||||
echo "Error de conexión a la BD: ". mysqli_connect_error();
|
||||
exit();
|
||||
if($bd_name != BD_NAME) {
|
||||
echo "Está intentando acceder a una base de datos que no existe, puede que la aplicación no funcione correctamente";
|
||||
}
|
||||
|
||||
/* ... */
|
||||
$app = Aplicacion::getSingleton();
|
||||
$this->mysqli = $app->conexionBd();
|
||||
}
|
||||
|
||||
//Destructor:
|
||||
//Destructor (Ya no es necesdario):
|
||||
/*
|
||||
public function __destruct(){
|
||||
$this->mysqli->close();
|
||||
}
|
||||
*/
|
||||
|
||||
//Methods:
|
||||
}
|
||||
?>
|
@ -2,7 +2,7 @@
|
||||
class Template {
|
||||
|
||||
//Constants:
|
||||
private const _NUMPAGES = 10;
|
||||
//private const _NUMPAGES = 10; //Constant to page results.
|
||||
|
||||
//Attributes:
|
||||
public $page; //Page Name.
|
||||
@ -403,6 +403,7 @@
|
||||
|
||||
}
|
||||
|
||||
//Print Cinemas info:
|
||||
function print_cinemas(){
|
||||
//List of the cinemas:
|
||||
require_once(__DIR__.'/common/cinema_dao.php');
|
||||
@ -423,6 +424,7 @@
|
||||
$phones[$key] = $value->getPhone();
|
||||
}
|
||||
}
|
||||
|
||||
switch($this->page){
|
||||
case "Panel de Administrador":
|
||||
echo "<div class='row'>
|
||||
@ -439,46 +441,47 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
";
|
||||
if(is_array($cinemas)){
|
||||
for($i = 0; $i < count($cinemas); $i++){
|
||||
echo '<tr>
|
||||
<td>'. $ids[$i] .'</td>
|
||||
<td>'. $names[$i] .'</td>
|
||||
<td>'. $directions[$i] .'</td>
|
||||
<td>'. $phones[$i] .'</td>
|
||||
<td>
|
||||
<form method="post" action="index.php?state=mc">
|
||||
<input name="id" type="hidden" value="'.$ids[$i].'">
|
||||
<input name="name" type="hidden" value="'.$names[$i].'">
|
||||
<input name="direction" type="hidden" value="'.$directions[$i].'">
|
||||
<input name="phone" type="hidden" value="'.$phones[$i].'">
|
||||
<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="'.$ids[$i].'">
|
||||
<input name="name" type="hidden" value="'.$names[$i].'">
|
||||
<input name="direction" type="hidden" value="'.$directions[$i].'">
|
||||
<input name="phone" type="hidden" value="'.$phones[$i].'">
|
||||
<input type="submit" id="submit" value="Eliminar" name="delete_cinema" class="primary" />
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
';
|
||||
}
|
||||
}
|
||||
echo'</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="column side"></div>
|
||||
';
|
||||
if(is_array($cinemas)){
|
||||
for($i = 0; $i < count($cinemas); $i++){
|
||||
echo '<tr>
|
||||
<td>'. $ids[$i] .'</td>
|
||||
<td>'. $names[$i] .'</td>
|
||||
<td>'. $directions[$i] .'</td>
|
||||
<td>'. $phones[$i] .'</td>
|
||||
<td>
|
||||
<form method="post" action="index.php?state=mc">
|
||||
<input name="id" type="hidden" value="'.$ids[$i].'">
|
||||
<input name="name" type="hidden" value="'.$names[$i].'">
|
||||
<input name="direction" type="hidden" value="'.$directions[$i].'">
|
||||
<input name="phone" type="hidden" value="'.$phones[$i].'">
|
||||
<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="'.$ids[$i].'">
|
||||
<input name="name" type="hidden" value="'.$names[$i].'">
|
||||
<input name="direction" type="hidden" value="'.$directions[$i].'">
|
||||
<input name="phone" type="hidden" value="'.$phones[$i].'">
|
||||
<input type="submit" id="submit" value="Eliminar" name="delete_cinema" class="primary" />
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
';
|
||||
}
|
||||
}
|
||||
echo'</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="column side"></div>
|
||||
';
|
||||
break;
|
||||
|
||||
default: break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//Print session MSG:
|
||||
function print_msg() {
|
||||
if(isset($_SESSION['message'])){
|
||||
|
@ -113,7 +113,7 @@ class FormFilm extends Form {
|
||||
if(!empty($tittle)&&$duration>0&&!empty($language)&&!empty($description)){
|
||||
// comprobar si existe una pelicula con el mismo titulo e idioma
|
||||
$exist = $bd-> GetFilm($tittle,$language);
|
||||
if( mysqli_num_rows($exist) != 0){
|
||||
if(mysqli_num_rows($exist) != 0){
|
||||
$this->correct =false;
|
||||
}
|
||||
else{
|
||||
|
@ -34,9 +34,6 @@
|
||||
};
|
||||
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();
|
||||
}
|
||||
|
@ -1,9 +1,7 @@
|
||||
<!DOCTYPE HTML>
|
||||
<?php
|
||||
//ini_set('display_errors', 0);
|
||||
//error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
||||
<?php
|
||||
|
||||
//General Config File:
|
||||
//General Config File:
|
||||
require_once('../assets/php/config.php');
|
||||
//Controller file:
|
||||
include_once('panel_manager.php');
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
include_once('../assets/php/common/hall.php');
|
||||
include_once('../assets/php/common/session.php');
|
||||
include_once($prefix.'assets/php/common/hall.php');
|
||||
include_once($prefix.'assets/php/common/session.php');
|
||||
include_once('./includes/formHall.php');
|
||||
include_once('./includes/formSession.php');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user