-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Se agrego todos los archivos iniciales para el MVC en español.
- Loading branch information
1 parent
e5b7465
commit 6b8bf6a
Showing
29 changed files
with
3,289 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Permite reescribir las peticiones URL | ||
RewriteEngine On | ||
|
||
# Si el archivo y la carpeta no existen hacer siguiente reescritura | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
|
||
# Redirecciona todas las peticiones a index.php | ||
RewriteRule ^ index.php [QSA,L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
/** | ||
* Base para el sistema, segun metodologia MVC (Titulo del sistema) | ||
* | ||
* (Descripcion del sistema) (Descripcion del sistema) | ||
* (Descripcion del sistema) (Descripcion del sistema)... | ||
* | ||
* @package APP | ||
*/ | ||
|
||
/** | ||
* Define la carpeta actual donde se monta el proyecto. | ||
* En este caso, si estas en localhost pondrias la carpeta de | ||
* proyecto con el '/' inicial ejemplo: '/miproyecto'. | ||
* Si estas en un hosting online y tu proyecto esta en la | ||
* raiz, tendrias que dejarlo vacio. | ||
* | ||
*/ | ||
define( 'APP_BASE' , '/mvc-base'); | ||
|
||
/** | ||
* Define version actual de la aplicacion | ||
*/ | ||
define( 'APP_VERSION' , '1.0'); | ||
|
||
/** | ||
* Define la URL de lado del servidor | ||
*/ | ||
define( 'APP_RUTA' , $_SERVER['DOCUMENT_ROOT'] . APP_BASE ); | ||
|
||
/** | ||
* Define la URL de lado del cliente (publica) | ||
*/ | ||
define( 'APP_URL' , "http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] ); | ||
|
||
/** | ||
* Carga archivo inicial del sistema | ||
* | ||
* Aqui carga todo los archivos que tienen que ver con el | ||
* NUCLEO inicial. | ||
* Tambien es usado para cargar el archivo de configuracion | ||
* | ||
* @since 1.0 | ||
*/ | ||
include 'sistema/Nucleo/Inicial.php'; | ||
$Router = new Enrutador(); |
Oops, something went wrong.