
| Current Path : /var/www/html/12park/web/modules/contrib/webform/src/Form/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/web/modules/contrib/webform/src/Form/WebformEntityAjaxFormTrait.php |
<?php
namespace Drupal\webform\Form;
use Drupal\Core\Form\FormState;
use Drupal\Core\Form\FormStateInterface;
use Drupal\webform\Ajax\WebformHtmlCommand;
/**
* Trait for webform entity ajax support.
*
* @todo Issue #2785047: In Outside In mode, messages should appear in the off-canvas tray, not the main page.
* @see https://www.drupal.org/node/2785047
*/
trait WebformEntityAjaxFormTrait {
use WebformAjaxFormTrait;
/**
* {@inheritdoc}
*/
protected function isAjax() {
return TRUE;
}
/**
* Determine if dialogs are disabled.
*
* @return bool
* TRUE if dialogs are disabled.
*/
protected function isDialogDisabled() {
return \Drupal::config('webform.settings')->get('ui.dialog_disabled');
}
/**
* Replace form via an Ajax response.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*
* @return \Drupal\Core\Ajax\AjaxResponse
* An Ajax response that replaces a form.
*/
protected function replaceForm(array $form, FormStateInterface $form_state) {
// Display messages first by prefixing it the form and setting its weight
// to -1000.
$form = [
'status_messages' => [
'#type' => 'status_messages',
'#weight' => -1000,
],
] + $form;
// Remove wrapper.
unset($form['#prefix'], $form['#suffix']);
$response = $this->createAjaxResponse($form, $form_state);
$response->addCommand(new WebformHtmlCommand('#' . $this->getWrapperId(), $form));
return $response;
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
if ($this->isDialogDisabled()) {
return $form;
}
else {
return $this->buildAjaxForm($form, $form_state);
}
}
/**
* {@inheritdoc}
*/
protected function actions(array $form, FormStateInterface $form_state) {
$actions = parent::actions($form, $form_state);
if (!$this->getEntity()->isNew() && !$this->isDialogDisabled()) {
$actions['reset'] = [
'#type' => 'submit',
'#value' => $this->t('Reset'),
'#submit' => ['::noSubmit'],
'#validate' => ['::noSubmit'],
'#attributes' => ['class' => ['webform-ajax-refresh']],
'#weight' => 100,
];
}
return $actions;
}
/**
* {@inheritdoc}
*/
public function cancelAjaxForm(array &$form, FormStateInterface $form_state) {
$entity = $this->getEntity();
$entity_type = $entity->getEntityTypeId();
$entity_id = $entity->id();
// Must complete reload the entity to make sure all changes are reflected.
$entity_storage = $this->entityTypeManager->getStorage($entity_type);
$entity_storage->resetCache([$entity_id]);
$entity = $entity_storage->load($entity_id);
// Get form object.
$form_object = $this->entityTypeManager->getFormObject($entity_type, $this->operation);
// Set form entity.
$form_object->setEntity($entity);
// Set form state.
$form_state = new FormState();
$form_state->setFormState([]);
$form_state->setUserInput([]);
// Build form.
/** @var \Drupal\Core\Form\FormBuilderInterface $form_builder */
$form_builder = \Drupal::service('form_builder');
$form = $form_builder->buildForm($form_object, $form_state);
// Return replace form as response.
return $this->replaceForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
protected function getDefaultAjaxSettings() {
return [
'disable-refocus' => TRUE,
'progress' => ['type' => 'fullscreen'],
];
}
}