在Drupal 7表单重定向中使用片段

时间:2011-10-07 18:35:21

标签: php drupal hook drupal-7

我正在尝试将网站管理员从更新内容重定向,因为它永远不会被直接查看。相反,我试图将它们链接到主页的特定部分,但是在重定向发生时,片段选项被忽略。

function _content_redirect_to(&$form_state, $hash) {
    $destination = drupal_get_destination();
    if ($destination['destination'] != 'admin/content') {
        $form_state['redirect'] = array(
            '<front>', 
            array(
                'query' => array(),
                'fragment' => 'whatever',
                'absolute' => TRUE,
            ),
        );
    }
}

function _content_redirect_location($form, &$form_state) {
    _content_redirect_to($form_state, 'locations');
}

function content_redirect_form_alter(&$form, &$form_state, $form_id) {
    $link = l('test link', '<front>', array(
        'fragment' => 'locations'
    ));
    drupal_set_message($link); // Works just fine.
    switch ($form_id) {
        case 'location_node_form':
            $form['actions']['submit']['#submit'][] = '_content_redirect_location';
            break;
    }
}

当我直接在更新时调用drupal_goto时会发生同样的事情。

function content_redirect_node_update($node) {
    if ($node->type == 'location') {
        drupal_goto(
            '<front>', array(
                'fragment' => 'locations'
            )
        );
    }
}

我无法找到关于其他地方的信息。

2 个答案:

答案 0 :(得分:0)

我知道这不是一个完美的解决方案,但试试这个:

$form['#action'] = url($_GET['q'], array('query' => array('destination' => 'DESIRED_LOCATION')));

答案 1 :(得分:0)

正确的方法是:

$form_state['redirect'] = array('<front>', array('fragment' => 'location'));