php 登录后Drupal重定向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 登录后Drupal重定向相关的知识,希望对你有一定的参考价值。

<?php

/**
 * Implements hook_user_login().
 */
function mymodule_user_login(\Drupal\user\UserInterface $account) {
  // Default login destination to the dashboard.
  $current_request = \Drupal::service('request_stack')->getCurrentRequest();
  if (!$current_request->query->get('destination')) {
    $current_request->query->set(
      'destination',
      \Drupal\Core\Url::fromRoute('mymodule.route')->toString()
    );
  }
}

以上是关于php 登录后Drupal重定向的主要内容,如果未能解决你的问题,请参考以下文章

在 Drupal 的 UberCart 结帐期间重定向到注册页面而不是登录页面?

在Drupal中重置密码功能页面没有正确重定向

php Drupal 8重定向到主页

php 重定向回节点编辑页面Drupal 8

Drupal 在 Elastic Beanstalk 上重定向到“eb deploy”上的 Install.php

PHP Drupal Hook_Menu重定向到themable tpl页面