FOSUserbundle記錄寄存器時間和登錄時間上FOSUserBundle
我想記錄諸如createdAt,UpdateAt,loginAt上的用戶表中,當用戶寄存器中的數據。
我在想什麼是我應該把這些繩子放在哪裏。
我可以找到類似的參考
它說覆蓋/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(),
));
但我不弄清楚怎樣的方式你可以用表格數據插入數據
like
$post = $form->getData();
$post->setCreatedAt(new \DateTime());
$post->setUpdatedAt(new \DateTime());
$em = $this->getDoctrine()->getEntityManager();
$em->persist($post);
$em->flush();
我是symfony2的新手。 我想我仍然碰到symfony2的基本邏輯。 謝謝你的回覆。
我擴展了FOS \ UserBundle \ Entity \ User並創建了createdAt,UpdateAt,loginAt列。 我可以從表單註冊中插入用戶行數據, 但我想要在用戶行註冊時自動插入createdAt。 – whitebear