##// END OF EJS Templates
modificado el menu de usuarios
modificado el menu de usuarios

File last commit:

r0:1
r5:6
Show More
ControllerBase.php
10 lines | 156 B | text/x-php | PhpLexer
<?php
abstract class ControllerBase {
protected $view;
function __construct()
{
$this->view = new View();
}
}
?>