index.php

  • require_once DIR . '/core/vendor/autoload.php';
    • return ComposerAutoloaderInite23e221879b77f56988466576fc63488::getLoader();
      • self::$loader = $loader = new \Composer\Autoload\ClassLoader();
      • include_path: '/include_paths.php';
      • include files: '/autoload_files.php'
      • loader→prefixes: '/autoload_namespaces.php'
      • loader→classMap: '/autoload_classmap.php'
  • require_once DIR . '/core/includes/bootstrap.inc';
    • Nur allerlei Konstanten
  • drupal_handle_request();
    • drupal_bootstrap(DRUPAL_BOOTSTRAP_CONFIGURATION);
      • _drupal_bootstrap_configuration();
        • drupal_environment_initialize(); drupal_settings_initialize(); require_once DIR . '/config.inc';
        • Installation fehlt: install_goto('core/install.php');
    • $kernel = new DrupalKernel('prod', drupal_classloader(), !$test_only);
      • drupal_classloader(): return $loader = include DIR . '/../vendor/autoload.php';
    • $kernel→boot();
      • $this→initializeContainer();
    • $request = Request::createFromGlobals();
    • \Drupal::getContainer()→set('request', $request);
    • drupal_bootstrap(DRUPAL_BOOTSTRAP_CODE);
    • $response = $kernel→handle($request)→prepare($request)→send();
    • $kernel→terminate($request, $response);
d8/codeexplore/x_1.txt · Zuletzt geändert: 2022/06/06 15:13 von 127.0.0.1
Recent changes RSS feed Debian Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki