diff --git a/core/modules/system/src/Plugin/views/field/BulkForm.php b/core/modules/system/src/Plugin/views/field/BulkForm.php index dd78e12..07bf3eb 100644 --- a/core/modules/system/src/Plugin/views/field/BulkForm.php +++ b/core/modules/system/src/Plugin/views/field/BulkForm.php @@ -282,7 +282,7 @@ public function viewsFormSubmit(&$form, FormStateInterface $form_state) { $count = 0; foreach ($selected as $bulk_form_key) { - $entity = $this->loadEntityFormBulkFormKey($bulk_form_key); + $entity = $this->loadEntityFromBulkFormKey($bulk_form_key); // Skip execution if the user did not have access. if (!$action->getPlugin()->access($entity, $this->view->getUser())) { @@ -383,7 +383,7 @@ protected function calculateEntityBulkFormKey(EntityInterface $entity) { * * @return \Drupal\Core\Entity\EntityInterface */ - protected function loadEntityFormBulkFormKey($bulk_form_key) { + protected function loadEntityFromBulkFormKey($bulk_form_key) { $key_parts = explode('-', $bulk_form_key); $vid = NULL;