Created
October 4, 2011 05:52
-
-
Save codecowboy/1260992 to your computer and use it in GitHub Desktop.
Revisions
-
codecowboy created this gist
Oct 4, 2011 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,55 @@ <?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; use FOS\UserBundle\Form\Model\CheckPassword; 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; } }