Created
July 12, 2011 20:12
-
-
Save codecowboy/1078869 to your computer and use it in GitHub Desktop.
ProfileFormHandler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* This file is part of the FOSUserBundle package. | |
* | |
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ | |
namespace GymLoop\CoreBundle\Form; | |
use Symfony\Component\Form\Form; | |
use Symfony\Component\HttpFoundation\Request; | |
use FOS\UserBundle\Model\UserInterface; | |
use FOS\UserBundle\Model\UserManagerInterface; | |
class ProfileFormHandler | |
{ | |
protected $request; | |
protected $userManager; | |
protected $form; | |
public function __construct(Form $form, Request $request, UserManagerInterface $userManager) | |
{ | |
$this->form = $form; | |
$this->request = $request; | |
$this->userManager = $userManager; | |
} | |
public function process(UserInterface $user) | |
{ | |
$this->form->setData($user); | |
if ('POST' == $this->request->getMethod()) { | |
$this->form->bindRequest($this->request); | |
if ($this->form->isValid()) { | |
$this->userManager->updateUser($user); | |
return true; | |
} | |
// Reloads the user to reset its username. This is needed when the | |
// username or password have been changed to avoid issues with the | |
// security layer. | |
$this->userManager->reloadUser($user); | |
} | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment