選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
328B

  1. <?php
  2. namespace common\controllers;
  3. use yii;
  4. class CommonController extends \yii\web\Controller {
  5. public function beforeAction($event) {
  6. if (!Yii::$app->user->isGuest) {
  7. Yii::$app->user->identity->updateDerniereConnexion();
  8. }
  9. return parent::beforeAction($event);
  10. }
  11. }
  12. ?>