Created the InfoBundle for informational pages
Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
15
src/OpenScrum/InfoBundle/Controller/DefaultController.php
Normal file
15
src/OpenScrum/InfoBundle/Controller/DefaultController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace OpenScrum\InfoBundle\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||||
|
||||
|
||||
class DefaultController extends Controller
|
||||
{
|
||||
|
||||
public function indexAction($name)
|
||||
{
|
||||
return $this->render('OpenScrumInfoBundle:Default:index.html.twig', array('name' => $name));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user