debug forms
This commit is contained in:
committed by
GitHub
parent
b989468601
commit
ec0a391745
@ -8,7 +8,7 @@ include_once('../assets/php/form.php');
|
||||
class formAddCinema extends Form{
|
||||
|
||||
public function __construct(){
|
||||
$op = array("action"=>"./?state=mc");
|
||||
$op = array("action"=>"./?state=mc&option=a");
|
||||
parent::__construct('formAddCinema',$op);
|
||||
}
|
||||
|
||||
@ -77,7 +77,7 @@ class formAddCinema extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mc';
|
||||
$result = './?state=mc';
|
||||
}
|
||||
$exist->free();
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ class formAddFilm extends Form{
|
||||
const EXTENSIONS = array('gif','jpg','jpe','jpeg','png');
|
||||
|
||||
public function __construct() {
|
||||
$options = array("action" => "./?state=mf", 'enctype' => 'multipart/form-data');
|
||||
$options = array("action" => "./?state=mf&option=a", 'enctype' => 'multipart/form-data');
|
||||
parent::__construct('formAddFilm', $options);
|
||||
}
|
||||
|
||||
@ -126,7 +126,7 @@ class formAddFilm extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mf';
|
||||
$result = './?state=mf';
|
||||
|
||||
}else {
|
||||
$result['img'] = 'El archivo tiene un nombre o tipo no soportado';
|
||||
|
@ -12,7 +12,7 @@ class formAddManager extends Form{
|
||||
const HTML5_EMAIL_REGEXP = '^[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$';
|
||||
|
||||
public function __construct() {
|
||||
$options = array("action" => "./?state=mg");
|
||||
$options = array("action" => "./?state=mg&option=a");
|
||||
parent::__construct('formAddManager', $options);
|
||||
}
|
||||
|
||||
@ -78,7 +78,7 @@ class formAddManager extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mg';
|
||||
$result = './?state=mg';
|
||||
}
|
||||
$exist->free();
|
||||
|
||||
|
@ -11,7 +11,7 @@ class formAddPromotion extends Form{
|
||||
const EXTENSIONS = array('gif','jpg','jpe','jpeg','png');
|
||||
|
||||
public function __construct() {
|
||||
$options = array("action" => "./?state=mp", 'enctype' => 'multipart/form-data');
|
||||
$options = array("action" => "./?state=mp&option=a", 'enctype' => 'multipart/form-data');
|
||||
parent::__construct('formAddPromotion', $options);
|
||||
}
|
||||
|
||||
@ -134,7 +134,7 @@ class formAddPromotion extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mp';
|
||||
$result = './?state=mp';
|
||||
|
||||
}else {
|
||||
$result['img'] = 'El archivo tiene un nombre o tipo no soportado';
|
||||
|
@ -8,7 +8,7 @@ include_once('../assets/php/form.php');
|
||||
class formDeleteCinema extends Form{
|
||||
|
||||
public function __construct(){
|
||||
$op = array("action"=>"./?state=mc");
|
||||
$op = array("action"=>"./?state=mc&option=d");
|
||||
parent::__construct('formAddCinema',$op);
|
||||
}
|
||||
|
||||
@ -59,7 +59,7 @@ class formDeleteCinema extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mc';
|
||||
$result = './?state=mc';
|
||||
}
|
||||
$exist->free();
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ class formDeleteFilm extends Form{
|
||||
const HTML5_EMAIL_REGEXP = '^[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$';
|
||||
|
||||
public function __construct() {
|
||||
$options = array("action" => "./?state=mf");
|
||||
$options = array("action" => "./?state=mf&option=d");
|
||||
parent::__construct('formDeleteFilm', $options);
|
||||
}
|
||||
|
||||
@ -69,7 +69,7 @@ class formDeleteFilm extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mf';
|
||||
$result = './?state=mf';
|
||||
}
|
||||
else{
|
||||
$result[] = "La pelicula seleccionada no existe.";
|
||||
|
@ -10,7 +10,7 @@ class formDeleteManager extends Form{
|
||||
const HTML5_EMAIL_REGEXP = '^[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$';
|
||||
|
||||
public function __construct() {
|
||||
$options = array("action" => "./?state=mg");
|
||||
$options = array("action" => "./?state=mg&option=d");
|
||||
parent::__construct('formDeleteManager', $options);
|
||||
}
|
||||
|
||||
@ -64,7 +64,7 @@ class formDeleteManager extends Form{
|
||||
</div>
|
||||
<div class='column side'></div>
|
||||
</div>";
|
||||
//$result = './?state=mg';
|
||||
$result = './?state=mg';
|
||||
}
|
||||
else{
|
||||
$result[] = "ERROR. No existe un manager con ese ID";
|
||||
|
@ -10,7 +10,7 @@ class formDeletePromotion extends Form{
|
||||
|
||||
|
||||
public function __construct() {
|
||||
$op = array("action" => "./?state=mp");
|
||||
$op = array("action" => "./?state=mp&option=d");
|
||||
parent::__construct('formEditPromotion', $op);
|
||||
}
|
||||
|
||||
@ -73,7 +73,7 @@ class formDeletePromotion extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mp';
|
||||
$result = './?state=mp';
|
||||
}
|
||||
else{
|
||||
|
||||
|
@ -8,7 +8,7 @@ include_once('../assets/php/form.php');
|
||||
class formEditCinema extends Form{
|
||||
|
||||
public function __construct(){
|
||||
$op = array("action"=>"./?state=mc");
|
||||
$op = array("action"=>"./?state=mc&option=e");
|
||||
parent::__construct('formAddCinema',$op);
|
||||
}
|
||||
|
||||
@ -83,7 +83,7 @@ class formEditCinema extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mc';
|
||||
$result = './?state=mc';
|
||||
}
|
||||
else{
|
||||
$result[] = "El cine seleccionado no existe.";
|
||||
|
@ -12,7 +12,7 @@ class formEditFilm extends Form{
|
||||
const EXTENSIONS = array('gif','jpg','jpe','jpeg','png');
|
||||
|
||||
public function __construct() {
|
||||
$options = array("action" => "./?state=mf", 'enctype' => 'multipart/form-data');
|
||||
$options = array("action" => "./?state=mf&option=e", 'enctype' => 'multipart/form-data');
|
||||
parent::__construct('formEditFilm', $options);
|
||||
}
|
||||
|
||||
@ -137,7 +137,7 @@ class formEditFilm extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mf';
|
||||
$result = './?state=mf';
|
||||
|
||||
}else {
|
||||
$result['img'] = 'El archivo tiene un nombre o tipo no soportado';
|
||||
@ -156,7 +156,7 @@ class formEditFilm extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mf';
|
||||
$result = './?state=mf';
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ class formEditManager extends Form{
|
||||
const HTML5_EMAIL_REGEXP = '^[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$';
|
||||
|
||||
public function __construct() {
|
||||
$options = array("action" => "./?state=mg");
|
||||
$options = array("action" => "./?state=mg&option=e");
|
||||
parent::__construct('formEditManager', $options);
|
||||
}
|
||||
|
||||
@ -69,7 +69,7 @@ class formEditManager extends Form{
|
||||
</div>
|
||||
<div class='column side'></div>
|
||||
</div>";
|
||||
// $result = './?state=mg';
|
||||
$result = './?state=mg';
|
||||
|
||||
}
|
||||
else{
|
||||
|
@ -12,7 +12,7 @@ class formEditPromotion extends Form{
|
||||
const EXTENSIONS = array('gif','jpg','jpe','jpeg','png');
|
||||
|
||||
public function __construct() {
|
||||
$options = array("action" => "./?state=mp", 'enctype' => 'multipart/form-data');
|
||||
$options = array("action" => "./?state=mp&option=e", 'enctype' => 'multipart/form-data');
|
||||
parent::__construct('formEditPromotion', $options);
|
||||
}
|
||||
|
||||
@ -139,7 +139,7 @@ class formEditPromotion extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mp';
|
||||
$result = './?state=mp';
|
||||
|
||||
}else {
|
||||
$result['img'] = 'El archivo tiene un nombre o tipo no soportado';
|
||||
@ -158,7 +158,7 @@ class formEditPromotion extends Form{
|
||||
<div class='column side'></div>
|
||||
</div>
|
||||
";
|
||||
//$result = './?state=mp';
|
||||
$result = './?state=mp';
|
||||
}
|
||||
}
|
||||
else{
|
||||
|
Reference in New Issue
Block a user