我有一些重定向问题。我是学习Drupal的新手。
我希望在验证节点的标题之后,在Drupal的标准搜索框中,将结果带到该节点的标题(网址)页面上。
谢谢
function bsecc_form_alter(&$form, $form_state, $form_id) {
if ($form_id == 'node_type_form') {
// Get the redirect page from some place,
// like in the URL, Referring URL, or DB
$redirect = check_plain($_GET['redirect']); // Set form redirect
$form['#redirect'] = $redirect;
}
}