function FormState::loadInclude

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

Overrides FormStateInterface::loadInclude

File

core/lib/Drupal/Core/Form/FormState.php, line 904

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

public function loadInclude($module, $type, $name = NULL) {
    if (!isset($name)) {
        $name = $module;
    }
    $build_info = $this->getBuildInfo();
    if (!isset($build_info['files']["{$module}:{$name}.{$type}"])) {
        // Only add successfully included files to the form state.
        if ($result = $this->moduleLoadInclude($module, $type, $name)) {
            $build_info['files']["{$module}:{$name}.{$type}"] = [
                'type' => $type,
                'module' => $module,
                'name' => $name,
            ];
            $this->setBuildInfo($build_info);
            return $result;
        }
    }
    return FALSE;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.