%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/ThemeBundle/Controller/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/ThemeBundle/Controller/SecurityController.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\ThemeBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Security\Core\SecurityContext;
/**
* Class SecurityController.
*
* @package Chamilo\ThemeBundle\Controller
*/
class SecurityController extends Controller
{
/**
* @return \Symfony\Component\HttpFoundation\Response
*/
public function loginAction(Request $request)
{
$session = $request->getSession();
// get the login error if there is one
if ($request->attributes->has(SecurityContext::AUTHENTICATION_ERROR)) {
$error = $request->attributes->get(SecurityContext::AUTHENTICATION_ERROR);
} else {
$error = $session->get(SecurityContext::AUTHENTICATION_ERROR);
$session->remove(SecurityContext::AUTHENTICATION_ERROR);
}
return $this->render(
'ChamiloThemeBundle:Security:login.html.twig',
[
'last_username' => $session->get(
SecurityContext::LAST_USERNAME
),
'error' => $error,
]
);
}
}