<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
//include 'mvc/controladores/usuario/RegistroPersona.php';
//include 'mvc/controladores/otros/PrestacionesSociales.php';
/**
* Description of Usuarios
*
* @author Desarrollo
*/
class SedesControlador extends Controladores {
/**
* Permite mostrar select de las Sedes.
* @return HTML Formulario solo con datos inciales o necesarios.
*/
function mostrarSelect(){
$sedes = Sedes::todas();
Vistas::mostrar("camara", "sedes/select-sedes", array('sedes'=>$sedes));
}
}