chill-bundles/Controller/DefaultController.php

14 lines
317 B
PHP

<?php
namespace Chill\CustomFieldsBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
public function indexAction($name)
{
return $this->render('ChillCustomFieldsBundle:Default:index.html.twig', array('name' => $name));
}
}