当用户点击webform弹出链接时,根据位置将用户重定向到特定网站

时间:2018-05-21 17:37:38

标签: javascript php redirect url-redirection drupal-8

我们在网站上有链接。

当用户点击链接时,会弹出在线表单。

如果来自美国以外的用户点击该链接,客户希望用户被重定向到另一个网站。

这可行吗?

网站基于最新的Drupal 8版本,以防有一个模块可以做到这一点。

1 个答案:

答案 0 :(得分:0)

您可以像这样使用表单使用hook_form_ID_alter。

function hook_form_FORM_ID_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) {
  // get the IP address of user and determine where they are coming from
  // Follow this https://stackoverflow.com/questions/12553160/getting-visitors-country-from-their-ip
  // Redirect user
  // Follow this https://drupal.stackexchange.com/questions/146185/how-to-create-a-redirection-in-drupal-8
}