You are here

protected function EntityForm::prepareInvokeAll in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/EntityForm.php \Drupal\Core\Entity\EntityForm::prepareInvokeAll()
  2. 10 core/lib/Drupal/Core/Entity/EntityForm.php \Drupal\Core\Entity\EntityForm::prepareInvokeAll()

Invokes the specified prepare hook variant.

Parameters

string $hook: The hook variant name.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

1 call to EntityForm::prepareInvokeAll()
EntityForm::init in core/lib/Drupal/Core/Entity/EntityForm.php
Initialize the form state and the entity before the first form build.

File

core/lib/Drupal/Core/Entity/EntityForm.php, line 389

Class

EntityForm
Base class for entity forms.

Namespace

Drupal\Core\Entity

Code

protected function prepareInvokeAll($hook, FormStateInterface $form_state) {
  $implementations = $this->moduleHandler
    ->getImplementations($hook);
  foreach ($implementations as $module) {
    $function = $module . '_' . $hook;
    if (function_exists($function)) {

      // Ensure we pass an updated translation object and form display at
      // each invocation, since they depend on form state which is alterable.
      $args = [
        $this->entity,
        $this->operation,
        &$form_state,
      ];
      call_user_func_array($function, $args);
    }
  }
}