blob: e221d96acf568cfb3c01d97473f10b728ed2b146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
<?php
// *************************************************************************************************************************************************
// Aplicación WEB: ogAdmWebCon
// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
// Fecha Creación: Año 2009-2010
// Fecha Última modificación: Agosto-2010
// Nombre del fichero: propiedades_entidades.php
// Descripción :
// Presenta el formulario de captura de datos de una entidad para insertar,modificar y eliminar
/**
* @file propiedades_entidades.php
* @version 1.1.0 - Se incluye la unidad organizativa como parametro del kernel: ogunit=directorio_unidad (ticket #678)
* @author Irina Gómez - ETSII Universidad de Sevilla
* @date 2015-12-16
*/
// *************************************************************************************************************************************************
include_once("../includes/ctrlacc.php");
include_once("../includes/opciones.php");
include_once("../includes/CreaComando.php");
include_once("../includes/TomaDato.php");
include_once("../includes/HTMLSELECT.php");
include_once("../clases/AdoPhp.php");
include_once("../idiomas/php/".$idioma."/propiedades_entidades_".$idioma.".php");
//________________________________________________________________________________________________________
$opcion=0;
$opciones=array($TbMsg[0],$TbMsg[1],$TbMsg[2],$TbMsg[3]);
//________________________________________________________________________________________________________
$identidad=0;
$nombreentidad="";
$iduniversidad=0;
$grupoid=0;
$comentarios="";
$ogunit=0;
if (isset($_GET["opcion"])) $opcion=$_GET["opcion"]; // Recoge parametros
if (isset($_GET["identidad"])) $identidad=$_GET["identidad"];
if (isset($_GET["grupoid"])) $grupoid=$_GET["grupoid"];
if (isset($_GET["iduniversidad"])) $iduniversidad=$_GET["iduniversidad"];
if (isset($_GET["identificador"])) $identidad=$_GET["identificador"];
//________________________________________________________________________________________________________
$cmd=CreaComando($cadenaconexion); // Crea objeto comando
if (!$cmd)
Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
if ($opcion!=$op_alta){
$resul=TomaPropiedades($cmd,$identidad);
if (!$resul)
Header('Location: '.$pagerror.'?herror=3'); // Error de recuperación de datos.
}
//________________________________________________________________________________________________________
?>
<HTML>
<HEAD>
<TITLE>Administración web de aulas</TITLE>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<LINK rel="stylesheet" type="text/css" href="../estilos.css">
<SCRIPT language="javascript" src="../jscripts/propiedades_entidades.js"></SCRIPT>
<SCRIPT language="javascript" src="../jscripts/opciones.js"></SCRIPT>
<SCRIPT language="javascript" src="../jscripts/validators.js"></SCRIPT>
<?php echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/propiedades_entidades_'.$idioma.'.js"></SCRIPT>'?>
</HEAD>
<BODY>
<div align="center">
<FORM name="fdatos" action="../gestores/gestor_entidades.php" method="post">
<INPUT type=hidden name=opcion value=<?php echo $opcion?>>
<INPUT type=hidden name=identidad value=<?php echo $identidad?>>
<INPUT type=hidden name=iduniversidad value=<?php echo $iduniversidad?>>
<INPUT type=hidden name=grupoid value=<?php echo $grupoid?>>
<P align=center class=cabeceras><?php echo $TbMsg[4]?><BR>
<SPAN class=subcabeceras><?php echo $opciones[$opcion]?></SPAN></P>
<TABLE align=center border=0 cellPadding=1 cellSpacing=1 class=tabla_datos>
<!-- -------------------------------------------------------------------------------------------------------------------------------------------- -->
<TR>
<TH> <?php echo $TbMsg[5]?> </TH>
<?php if ($opcion==$op_eliminacion){
echo '<TD>'.$nombreentidad.'</TD>';
}else{
echo '<TD><INPUT type=text class=cajatexto name="nombreentidad" style="width:350px" value="'.$nombreentidad.'">';
} ?>
</TR>
<!-- -------------------------------------------------------------------------------------------------------------------------------------------- -->
<TR>
<TH align=center> <?php echo $TbMsg[6]?> </TH>
<?php if ($opcion==$op_eliminacion)
echo '<TD>'.$comentarios.'</TD>';
else
echo '<TD><TEXTAREA class="formulariodatos" name=comentarios rows=3 cols=66>'.$comentarios.'</TEXTAREA></TD>';
?>
</TR>
<!-- -------------------------------------------------------------------------------------------------------------------------------------------- -->
<?php if ($opcion!=$op_eliminacion) {
$checked = ($ogunit == 1) ? "checked" : "";
echo " <TR>\n".
" <TH align=center> ".$TbMsg['OGUNIT']." </TH>\n".
" <TD><input class='formulariodatos' name='ogunit' value='1' type='checkbox' $checked onchange='mensaje_ogunit()'> </TD>\n".
" </TR>\n";
} ?>
<!-- -------------------------------------------------------------------------------------------------------------------------------------------- -->
</TABLE>
</FORM>
</div>
<?php
//________________________________________________________________________________________________________
include_once("../includes/opcionesbotonesop.php");
//________________________________________________________________________________________________________
?>
</BODY>
</HTML>
<?php
//________________________________________________________________________________________________________
// Recupera los datos de un entidad
// Parametros:
// - cmd: Una comando ya operativo (con conexión abierta)
// - id: El identificador del entidad
//________________________________________________________________________________________________________
function TomaPropiedades($cmd,$id){
global $nombreentidad;
global $comentarios;
global $ogunit;
$rs=new Recordset;
$cmd->texto="SELECT * FROM entidades WHERE identidad=".$id;
$rs->Comando=&$cmd;
if (!$rs->Abrir()) return(false); // Error al abrir recordset
$rs->Primero();
if (!$rs->EOF){
$nombreentidad=$rs->campos["nombreentidad"];
$comentarios=$rs->campos["comentarios"];
$ogunit=$rs->campos["ogunit"];
$rs->Cerrar();
return(true);
}
else
return(false);
}
|