##// END OF EJS Templates
agregado el controlador staff y algunas funciones como agregar nuevo.
agregado el controlador staff y algunas funciones como agregar nuevo.

File last commit:

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