-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevidencia2_MarioAndresRuiz.php
193 lines (164 loc) · 8.46 KB
/
evidencia2_MarioAndresRuiz.php
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Mario Ruiz">
<meta name="description" content="Página Web práctica con PHP">
<title>Evidencia - Actividad de aprendizaje 2</title>
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<style type="text/css">
header{height: 300px; padding-left: 16px; background: url('http://www.eduroam.co/files/VPWK8EH9MZ2.jpg') center top fixed; background-size: 100% 70%}
header h1, h3 {color: #fff; font-weight: 600;}
header h3 {font-style: italic}
footer{height: 150px}
main {padding-top:20px; padding-bottom: 30px}
section article table td {color: #f44336;}
section article table th {text-transform: uppercase;}
section article table tr:hover{background-color: rgba(0,0,0,.85)!important}
section article table tr td:hover{background-color: #f44336; color: black;}
footer p {font-style: italic; font-weight: 200; text-align: center; line-height:5px}
footer p a {text-decoration: none;}
footer p a:hover{color:#575757; font-weight: 600;}
@media screen and (max-width:767px){section table th{font-size: .75em}footer p {line-height: 13px} }
</style>
</head>
<body>
<header class="w3-display-container w3-animate-opacity w3-animate-zoom">
<h1>Actividad De Aprendizaje 2.</h1>
<h3>Evidencia.</h3>
</header>
<main class="w3-main">
<section class="w3-row">
<article class="w3-container w3-center">
<?php
/**
* @author Mario Andrés Ruiz Bedoya <Marioarb.97@gmail.com>
* Este código está implementado sobre arrays, se crea un arreglo directorio,
* un arreglo colores y una variable tabla que permite mostrar todo en el
* navegador. Despues el directorio es impreso por el navegador
*
* Implementado para el curso de desarrollo web con PHP
* Evidencia de aprendizaje número 2
*/
/**
* Declaración de variables globales
* @var array $directorio, arreglo con el directorio de usuarios a imprimir
* @var array $colores, arreglo con el significado de los colores
* @var string $tabla, variable que imprime en el navegador la tabla
*/
$directorio = array(
array("nombre" => "Mario Ruiz", "direccion" => "calle 123", "telefono" => 310254, "color" => "Verde"),
array("nombre" => "Alberto Gutierrez", "direccion" => "carrera 1", "telefono" => 1234, "color" => "Azul"),
array("nombre" => "Andrés Bedoya", "direccion" => "avenida 80", "telefono" => 23085, "color" => "Rojo"),
);
$colores = array(
"Amarillo" => "Riqueza y alegria",
"Azul" => "Tranquilidad y Serenidad",
"Rojo" => "Amor y pasión"
);
$tabla;
/**
* Esta función crea los títulos ubicados en la cabecera de la tabla.
*
* @global type $tabla, crea la variable global tabla para modificar la del ámbito
* externo de la función.
*/
function cabecera() {
global $tabla;
$tabla .= "<table class=\"w3-table-all w3-centered\">";
$tabla .= "<tr class=\"w3-black\">";
$tabla .= "<th>" . "Nombre" . "</th>";
$tabla .= "<th>" . "Dirección" . "</th>";
$tabla .= "<th>" . "Teléfono" . "</th>";
$tabla .= "<th>" . "Color" . "</th>";
$tabla .= "<th>" . "Significado" . "</th>";
$tabla .= "</tr>";
}
/**
* Esta función "crea" un registro de la tabla, seguido de esto le asigna a la última
* columna (significado del color) su valor llamando la función significado
*
* @global type $tabla, variable que permite modificar la variable global tabla
* @global array $directorio, variable que permite trabajar con el arreglo global directorio
* @param type $numUsuario, recibe por parámetro el número del usuario a modificar
*/
function imprimirUsuario() {
global $tabla;
global $directorio;
$user = 0;
foreach ($directorio as $usuario) {
$color = $directorio[$user]["color"];
$tabla .="<tr>";
foreach ($usuario as $datos) {
$tabla .="<td>" . $datos . "</td>";
}
if (!empty($color)) {
significado($color);
} else {
$tabla.="<td>" . "Campo color vacío" . "</td>";
}
$tabla .="</tr>";
$user++;
}
}
/**
* Esta función recibe como parámetro el valor del color a comparar,
* despues en la estructura switch asigna el valor correspondiente tomado del
* arreglo global $colores.
*
* @global type $tabla
* @global array $colores
* @param type $color
*/
function significado($color) {
global $tabla;
global $colores;
switch ($color) {
case "Amarillo":
$tabla .="<td>" . $colores["Amarillo"] . "</td>";
break;
case "Azul":
$tabla .="<td>" . $colores["Azul"] . "</td>";
break;
case "Rojo":
$tabla .="<td>" . $colores["Rojo"] . "</td>";
break;
default :
$tabla .="<td>" . "No se encuentra el color" . "</td>";
break;
}
}
/**
* Esta función crea la tabla
* crea la cabecera
* crea los 3 registros del array global $directorio
* imprime tabla en el navegador
*
* @global array $directorio
*/
function crearTabla() {
global $tabla;
//crear cabecera de la tabla
cabecera();
//crear los registros en la tabla
imprimirUsuario();
//Cerrar etiqueta table e Imprimir tabla en el navegador
$tabla .= "</table>";
echo $tabla;
}
//Esta línea de código se encarga de ejecutar las funciones que
//Permiten mostrar los datos tabulados en el navegador
crearTabla();
?>
</article>
</section>
</main>
<hr />
<footer class="w3-container">
<p>Medellín, 2016 - Hecho por Mario Andrés Ruiz.</p>
<p>Curso de desarrollo web con PHP - Tutora: Ana María Alvarez.</p>
<p><a class="w3-text-blue" href="http://oferta.senasofiaplus.edu.co/sofia-oferta/">Cursos virtuales SENA</a></p>
</footer>
</body>
</html>