Loading src/Action/ViewsBulkOperationsActionBase.php +2 −2 Original line number Original line Diff line number Diff line Loading @@ -88,7 +88,7 @@ abstract class ViewsBulkOperationsActionBase extends ActionBase implements Views * @param \Drupal\Core\Form\FormStateInterface $form_state * @param \Drupal\Core\Form\FormStateInterface $form_state * The form state object. * The form state object. */ */ public function validateConfigurationForm(array &$form, FormStateInterface $form_state): void { public function validateConfigurationForm(array &$form, FormStateInterface $form_state) { } } Loading @@ -103,7 +103,7 @@ abstract class ViewsBulkOperationsActionBase extends ActionBase implements Views * @param \Drupal\Core\Form\FormStateInterface $form_state * @param \Drupal\Core\Form\FormStateInterface $form_state * The form state object. * The form state object. */ */ public function submitConfigurationForm(array &$form, FormStateInterface $form_state): void { public function submitConfigurationForm(array &$form, FormStateInterface $form_state) { $form_state->cleanValues(); $form_state->cleanValues(); foreach ($form_state->getValues() as $key => $value) { foreach ($form_state->getValues() as $key => $value) { $this->configuration[$key] = $value; $this->configuration[$key] = $value; Loading Loading
src/Action/ViewsBulkOperationsActionBase.php +2 −2 Original line number Original line Diff line number Diff line Loading @@ -88,7 +88,7 @@ abstract class ViewsBulkOperationsActionBase extends ActionBase implements Views * @param \Drupal\Core\Form\FormStateInterface $form_state * @param \Drupal\Core\Form\FormStateInterface $form_state * The form state object. * The form state object. */ */ public function validateConfigurationForm(array &$form, FormStateInterface $form_state): void { public function validateConfigurationForm(array &$form, FormStateInterface $form_state) { } } Loading @@ -103,7 +103,7 @@ abstract class ViewsBulkOperationsActionBase extends ActionBase implements Views * @param \Drupal\Core\Form\FormStateInterface $form_state * @param \Drupal\Core\Form\FormStateInterface $form_state * The form state object. * The form state object. */ */ public function submitConfigurationForm(array &$form, FormStateInterface $form_state): void { public function submitConfigurationForm(array &$form, FormStateInterface $form_state) { $form_state->cleanValues(); $form_state->cleanValues(); foreach ($form_state->getValues() as $key => $value) { foreach ($form_state->getValues() as $key => $value) { $this->configuration[$key] = $value; $this->configuration[$key] = $value; Loading