Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Form/FormStateInterface.php \Drupal\Core\Form\FormStateInterface::loadInclude()
  2. 9 core/lib/Drupal/Core/Form/FormStateInterface.php \Drupal\Core\Form\FormStateInterface::loadInclude()

Ensures an include file is loaded whenever the form is processed.

Example:

// Load node.admin.inc from Node module.
$form_state
  ->loadInclude('node', 'inc', 'node.admin');

Use this function instead of \Drupal::moduleHandler()->loadInclude() from inside a form constructor or any form processing logic as it ensures that the include file is loaded whenever the form is processed. In contrast to using \Drupal::moduleHandler()->loadInclude() directly, this method makes sure the include file is correctly loaded also if the form is cached.

Parameters

string $module: The module to which the include file belongs.

string $type: The include file's type (file extension).

string|null $name: (optional) The base file name (without the $type extension). If omitted, $module is used; i.e., resulting in "$module.$type" by default.

Return value

string|false The filepath of the loaded include file, or FALSE if the include file was not found or has been loaded already.

See also

\Drupal\Core\Extension\ModuleHandlerInterface::loadInclude()

1 method overrides FormStateInterface::loadInclude()
FormStateDecoratorBase::loadInclude in core/lib/Drupal/Core/Form/FormStateDecoratorBase.php
Ensures an include file is loaded whenever the form is processed.

File

core/lib/Drupal/Core/Form/FormStateInterface.php, line 72

Class

FormStateInterface
Provides an interface for an object containing the current state of a form.

Namespace

Drupal\Core\Form

Code

public function loadInclude($module, $type, $name = NULL);