UbicGeograficaController.php 503 Bytes
<?php

namespace UBV\UbicGeograficaBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;

class UbicGeograficaController extends Controller
{
     /**
     * @Route("/", name="ubicGeografica_principal")
     * @Template()
     */
    public function principalAction()
    {
        return $this->render('UBVUbicGeograficaBundle::inicio.html.twig');
    }
}