for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\ThemeBundle\Controller;
use Chamilo\ThemeBundle\Form\FormDemoModelType;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
/**
* Class DefaultController.
*
* @package Chamilo\ThemeBundle\Controller
*/
class DefaultController extends AbstractController
{
* @return \Symfony\Component\HttpFoundation\Response
public function dashboardAction()
return $this->render('ChamiloThemeBundle:Default:index.html.twig');
}
public function uiGeneralAction()
public function uiIconsAction()
public function formAction()
$form = $this->createForm(new FormDemoModelType());
return $this->render('ChamiloThemeBundle:Default:form.html.twig', [
'form' => $form->createView(),
]);