function DrupalKernel::loadLegacyIncludes
Same name in other branches
- 9 core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::loadLegacyIncludes()
- 10 core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::loadLegacyIncludes()
- 11.x core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::loadLegacyIncludes()
Overrides DrupalKernelInterface::loadLegacyIncludes
2 calls to DrupalKernel::loadLegacyIncludes()
- DrupalKernel::preHandle in core/
lib/ Drupal/ Core/ DrupalKernel.php - Helper method that does request related initialization.
- UpdateKernel::loadLegacyIncludes in core/
lib/ Drupal/ Core/ Update/ UpdateKernel.php - Helper method that loads legacy Drupal include files.
1 method overrides DrupalKernel::loadLegacyIncludes()
- UpdateKernel::loadLegacyIncludes in core/
lib/ Drupal/ Core/ Update/ UpdateKernel.php - Helper method that loads legacy Drupal include files.
File
-
core/
lib/ Drupal/ Core/ DrupalKernel.php, line 556
Class
- DrupalKernel
- The DrupalKernel class is the core of Drupal itself.
Namespace
Drupal\CoreCode
public function loadLegacyIncludes() {
require_once $this->root . '/core/includes/common.inc';
require_once $this->root . '/core/includes/database.inc';
require_once $this->root . '/core/includes/module.inc';
require_once $this->root . '/core/includes/theme.inc';
require_once $this->root . '/core/includes/pager.inc';
require_once $this->root . '/core/includes/menu.inc';
require_once $this->root . '/core/includes/tablesort.inc';
require_once $this->root . '/core/includes/file.inc';
require_once $this->root . '/core/includes/unicode.inc';
require_once $this->root . '/core/includes/form.inc';
require_once $this->root . '/core/includes/errors.inc';
require_once $this->root . '/core/includes/schema.inc';
require_once $this->root . '/core/includes/entity.inc';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.