drupal10/web/index.php
Audrey Jensen 9ed18e9f52
Some checks are pending
CI / build (snapshot, beta, 8.1) (push) Waiting to run
CI / build (snapshot, beta, 8.2) (push) Waiting to run
CI / build (snapshot, dev, 8.1) (push) Waiting to run
CI / build (snapshot, dev, 8.2) (push) Waiting to run
CI / build (snapshot, stable, 8.1) (push) Waiting to run
CI / build (snapshot, stable, 8.2) (push) Waiting to run
CI / build (snapshot, stable, 8.3) (push) Waiting to run
CI / build (stable, beta, 8.1) (push) Waiting to run
CI / build (stable, beta, 8.2) (push) Waiting to run
CI / build (stable, dev, 8.1) (push) Waiting to run
CI / build (stable, dev, 8.2) (push) Waiting to run
CI / build (stable, stable, 8.1) (push) Waiting to run
CI / build (stable, stable, 8.2) (push) Waiting to run
CI / build (stable, stable, 8.3) (push) Waiting to run
CI / test-composer (push) Waiting to run
initial
2024-08-22 08:26:43 -05:00

23 lines
549 B
PHP

<?php
/**
* @file
* The PHP page that serves all page requests on a Drupal installation.
*
* All Drupal code is released under the GNU General Public License.
* See COPYRIGHT.txt and LICENSE.txt files in the "core" directory.
*/
use Drupal\Core\DrupalKernel;
use Symfony\Component\HttpFoundation\Request;
$autoloader = require_once 'autoload.php';
$kernel = new DrupalKernel('prod', $autoloader);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);