public function GotoAction::buildConfigurationForm in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Action/Plugin/Action/GotoAction.php \Drupal\Core\Action\Plugin\Action\GotoAction::buildConfigurationForm()
- 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\ActionCode
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;
}