##// END OF EJS Templates
agregadas imagenes para el administrador del sitio
agregadas imagenes para el administrador del sitio

File last commit:

r0:1
r6:7
Show More
ControllerBase.php
10 lines | 156 B | text/x-php | PhpLexer
/ trunk / libs / ControllerBase.php
arturo
creando directorios base para el desarrollo
r0 <?php
abstract class ControllerBase {
protected $view;
function __construct()
{
$this->view = new View();
}
}
?>