You are here

public function GotoAction::buildConfigurationForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Action/Plugin/Action/GotoAction.php \Drupal\Core\Action\Plugin\Action\GotoAction::buildConfigurationForm()
  2. 9 core/lib/Drupal/Core/Action/Plugin/Action/GotoAction.php \Drupal\Core\Action\Plugin\Action\GotoAction::buildConfigurationForm()

File

core/lib/Drupal/Core/Action/Plugin/Action/GotoAction.php, line 114

Class

GotoAction
Redirects to a different URL.

Namespace

Drupal\Core\Action\Plugin\Action

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $form['url'] = [
    '#type' => 'textfield',
    '#title' => t('URL'),
    '#description' => t('The URL to which the user should be redirected. This can be an internal URL like /node/1234 or an external URL like @url.', [
      '@url' => 'http://example.com',
    ]),
    '#default_value' => $this->configuration['url'],
    '#required' => TRUE,
  ];
  return $form;
}