##// 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
<?php
abstract class ControllerBase {
protected $view;
function __construct()
{
$this->view = new View();
}
}
?>