From c730a55deebf3d6b06f8456ab1a6fbf7fd2ceafd Mon Sep 17 00:00:00 2001 From: Leonardo Espejo <85245534+Leo-Spj@users.noreply.github.com> Date: Thu, 5 Oct 2023 00:55:26 -0500 Subject: [PATCH] =?UTF-8?q?restucturando=20carpetas=20y=20a=C3=B1adiendo?= =?UTF-8?q?=20path=20ruta=20absoluta=20por=20php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.php | 8 +- php/controllers/Cursos.php | 5 +- php/controllers/Index.php | 13 ++ php/views/index.php | 187 ++++++++++++++++++ .../views/usuario/carrito/carrito.php | 0 php/views/{ => usuario}/cursos/cursos.php | 0 login.html => php/views/usuario/login.html | 0 utils.php | 3 + 8 files changed, 212 insertions(+), 4 deletions(-) create mode 100644 php/controllers/Index.php create mode 100644 php/views/index.php rename carrito.html => php/views/usuario/carrito/carrito.php (100%) rename php/views/{ => usuario}/cursos/cursos.php (100%) rename login.html => php/views/usuario/login.html (100%) create mode 100644 utils.php diff --git a/index.php b/index.php index 48c250b..28445a7 100644 --- a/index.php +++ b/index.php @@ -1,9 +1,11 @@ cursos(); ?> \ No newline at end of file diff --git a/php/controllers/Cursos.php b/php/controllers/Cursos.php index b27919f..6ae9034 100644 --- a/php/controllers/Cursos.php +++ b/php/controllers/Cursos.php @@ -9,7 +9,10 @@ public function cursos(){ $data["titulo"] = "Cursos"; $data["cursos"] = $cursos->get_cursos(); - require_once "php/views/cursos/cursos.php"; + require_once "utils.php"; + $dirname = $__dirname; + + require_once "$dirname/php/views/usuario/cursos/cursos.php"; // Importo la vista de Cursos } diff --git a/php/controllers/Index.php b/php/controllers/Index.php new file mode 100644 index 0000000..e62b74e --- /dev/null +++ b/php/controllers/Index.php @@ -0,0 +1,13 @@ + \ No newline at end of file diff --git a/php/views/index.php b/php/views/index.php new file mode 100644 index 0000000..6a5606d --- /dev/null +++ b/php/views/index.php @@ -0,0 +1,187 @@ + + + + + + + Easy Code + + + + + + + + + + + + + + + +
+

Nuevo curso Disponible! Reservalo ahora aquí

+
+ + + +
+
+

Aprende a programar como un profesional

+

Conviértete en un desarrollador de clase mundial desde cualquier parte + del mundo

+ Comienza +
+
+ + + +
+

EL CAMINO MÁS FÁCIL HACIA EL APRENDIZAJE

+
+ +
+
+ +
+
+
+ +
+ +
+

Lecciones paso a paso

+

Avanza desde ser un principiante total hasta convertirte en un + desarrollador de nivel mundial sin saltarte pasos. Cada lección + te lleva hacia una comprensión completa y maestría del tema.

+
+
+ +
+
+ +
+ +
+

Proyectos reales

+

Desarrolla proyectos reales que te ayudarán a construir tu + portafolio y te darán la experiencia que necesitas para + conseguir un trabajo como desarrollador.

+
+
+ +
+
+ +
+ +
+

Soporte de por vida

+

Obtén soporte de por vida de nuestro equipo de instructores y de + la comunidad de Easy Code. Nunca te quedes atascado y siempre + avanza.

+
+
+
+
+
+ + + + + + + diff --git a/carrito.html b/php/views/usuario/carrito/carrito.php similarity index 100% rename from carrito.html rename to php/views/usuario/carrito/carrito.php diff --git a/php/views/cursos/cursos.php b/php/views/usuario/cursos/cursos.php similarity index 100% rename from php/views/cursos/cursos.php rename to php/views/usuario/cursos/cursos.php diff --git a/login.html b/php/views/usuario/login.html similarity index 100% rename from login.html rename to php/views/usuario/login.html diff --git a/utils.php b/utils.php new file mode 100644 index 0000000..b679eaf --- /dev/null +++ b/utils.php @@ -0,0 +1,3 @@ +