2

FOSUserbundle

ユーザー登録時に、userテーブルにcreatedAt、UpdateAt、loginAtなどのデータを記録したい。

私が考えているのは、これらのコードをどこに置くべきかということです。

同様の参照を見つけることができます

https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/overriding_controllers.md

/src/Acme/UserBundle/Controller/RegistrationController.php をオーバーライドすると書かれています

class RegistrationController extends BaseController
{
    public function registerAction()
    {
        $form = $this->container->get('fos_user.registration.form');
        $formHandler = $this->container->get('fos_user.registration.form.handler');
        $confirmationEnabled = $this->container->getParameter('fos_user.registration.confirmation.enabled');

        $process = $formHandler->process($confirmationEnabled);
        if ($process) {
            $user = $form->getData();

            /*****************************************************
             * Add new functionality (e.g. log the registration) *
             *****************************************************/
            $this->container->get('logger')->info(
                sprintf('New user registration: %s', $user)
            );

            if ($confirmationEnabled) {
                $this->container->get('session')->set('fos_user_send_confirmation_email/email', $user->getEmail());
                $route = 'fos_user_registration_check_email';
            } else {
                $this->authenticateUser($user);
                $route = 'fos_user_registration_confirmed';
            }

            $this->setFlash('fos_user_success', 'registration.flash.user_created');
            $url = $this->container->get('router')->generate($route);

            return new RedirectResponse($url);
        }

        return $this->container->get('templating')->renderResponse('FOSUserBundle:Registration:register.html.'.$this->getEngine(), array(
            'form' => $form->createView(),
        ));

しかし、フォームデータを使用してテーブルにデータを挿入する方法がわかりません

お気に入り

$post = $form->getData();
$post->setCreatedAt(new \DateTime()); 
$post->setUpdatedAt(new \DateTime());
$em = $this->getDoctrine()->getEntityManager();
$em->persist($post);
$em->flush();

私はsymfony2の初心者です。私はまだ symfony2 の基本的なロジックにぶつかっていると思います。親切な返信ありがとうございます。

4

3 に答える 3

5

問題を解決しました。

HasLifecycleCallbacks と 2 つの関数 prePersist、preUpdate を追加しました

Acme/UserBundle/Entity/User.php 内

/**
 * @ORM\Entity
 * @ORM\Table(name="fos_user")
 *
 * @ORM\HasLifecycleCallbacks 
 *
 */
class User extends BaseUser
{

     /**
     * @ORM\PrePersist()
     * 
     */

    public function prePersist()
    {
        $this->createdAt = new \DateTime;
        $this->updatedAt = new \DateTime;
    }

    /**
     * Hook on pre-update operations
     * @ORM\PreUpdate()
     */
    public function preUpdate()
    {
        $this->updatedAt = new \DateTime;
    }

私を見て、助けてくれてありがとう。

于 2013-04-13T19:46:04.763 に答える