php 重定向回节点编辑页面Drupal 8
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 重定向回节点编辑页面Drupal 8相关的知识,希望对你有一定的参考价值。
<?php
/**
* Implements hook hook_form_node_form_alter
**/
function hook_form_node_form_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) {
foreach (array_keys($form['actions']) as $action) {
if(is_array($form['actions'][$action])) {
$form['actions'][$action]['#submit'][] = 'fwsredirect_remove_destination';
}
}
}
function hook_remove_destination(array $form, \Drupal\Core\Form\FormStateInterface $form_state) {
$userInput = $form_state->getUserInput();
if($userInput['op'] != 'Preview') {
$node = \Drupal::routeMatch()->getParameter('node');
if ($node instanceof \Drupal\node\NodeInterface) {
\Drupal::request()->query->set('destination', 'node/' . $node->id() . '/edit');
}
}
}
以上是关于php 重定向回节点编辑页面Drupal 8的主要内容,如果未能解决你的问题,请参考以下文章
php Drupal 8重定向到主页
Drupal 管理员无法访问编辑视图页面
PHP Drupal Hook_Menu重定向到themable tpl页面
将用户重定向回原始页面
PHP Zend Framework:将表单重定向回页面用户来自
如何在 PHP 中登录页面后将用户重定向回所需的 URL?