-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (28 loc) · 849 Bytes
/
index.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
<?php
define('DS', DIRECTORY_SEPARATOR);
define('TEMPLATE_DIR', 'View' . DS);
define('BASE_DIR', getcwd() . DS);
// Ac� deber�a haber alg�n tipo de boostrapping o un llamado a una clase que
// se encargue de hacerlo.
//
// Ver un ejemplo en: http://phpsnaps.com/snaps/view/bootstrap-php-code/
//
// Por supuesto, adaptado a la estructura que estamos manejando.
spl_autoload_register(
function ($class)
{
preg_match('/^(?<name>\w+)(?<function>(Controller|Model)){1}$/', $class, $matches);
switch (@$matches['function']) {
case 'Controller':
require_once('Controller' . DS . $class . '.php');
break;
case 'Model':
require_once('Model' . DS . $class . '.php');
break;
default:
require_once('Ekeke' . DS . $class . '.class.php');
} // switch
}
);
$direccionesController = new DireccionesController();
?>