hook_form_alterを使用して、2つのことを行う必要があります
1)ノードフォームであることを確認します2)各送信ボタンにカスタム送信ハンドラを追加します。
function mymodule_form_alter(&$form, FormStateInterface $form_state, $form_id) {
if (isset($form['#entity_type']) && $form['#entity_type'] == 'node') {
foreach (array_keys($form['actions']) as $action) {
if ($action != 'preview' && isset($form['actions'][$action]['#type']) && $form['actions'][$action]['#type'] === 'submit') {
$form['actions'][$action]['#submit'][] = 'mymodule_node_form_submit';
}
}
}
}
次に、送信機能では、任意のロジックを使用できます。NodeForm :: saveと比較して、現在のユーザーのアクセス許可に基づいて、正規のノードページまたはフロントページに移動できます。
この動作を変更して現在のノードフォームに留まるようにするには、次のようにします。
function mymodule_node_form_submit($form, FormStateInterface $form_state) {
$node = $form_state->getFormObject()->getEntity();
if ($node->id()) {
if ($node->access('edit')) {
$form_state->setRedirect(
'entity.node.edit_form',
['node' => $node->id()]
);
}
else {
$form_state->setRedirect('<front>');
}
}
}
カスタムランディングページを使用する場合は、リダイレクトをすでに使用しているコードに置き換えるだけです。
$form_state->setRedirect('custom.landing.page');
/ admin / contentページなど、「destination」の$ _GETパラメータがある場合、これは上書きされないことに注意してください。
/ admin / contentページから宛先パラメーターを削除するには、そのビューフィールドの[コンテンツ:操作リンク(操作)]の下にある[宛先]チェックボックスをオフにします。
If saving is an option, privileged users get dedicated form submit buttons to adjust the publishing status while saving in one go. @todo This adjustment makes it close to impossible for contributed modules to integrate with "the Save operation" of this form. Modules need a way to plug themselves into 1) the ::submit() step, and 2) the ::save() step, both decoupled from the pressed form button.