私はsymfony 3でかなり新しいので、ユーザーがログインしてログアウトするときに時間を取得する方法..時間のエンティティを作成する必要があることを知っています..そのエンティティにはid、userID startTime、endTime..があり、ユーザーはすべきですこのエンティティとの接続(多対多、その多くのユーザーが多くのログインを持つ可能性があります..)があります....この情報をデータベースに保存したいと思います。Googleで検索しようとしましたが、共通点は見つかりませんでした。
このボタンが押されたときに時間 startTime を有効にしたい サインインしてコントローラにコードを書く
@Route("/login", name="authentication_login")
public function loginActionAction(Request $request)
{
$authenticationUtils = $this->get('security.authentication_utils');
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render('AppBundle:uzduotis:login.html.twig', array(
'last_username' => $lastUsername,
'error' => $error,
));
}
その後、endTime
/**
* @Route("/logout", name="logout")
* @Method({"GET"})
*/
public function logoutAction(Request $request)
{
$session = $this->$request->getSession();
$session = $this->get('session')->clear();
return $this->render('AppBundle:uzduotis:login.html.twig');
}