Newer
Older
/**
* @file
* The PHP page that serves all page requests on a Drupal installation.
*

Dries Buytaert
committed
* All Drupal code is released under the GNU General Public License.

Nate Lampton
committed
* See COPYRIGHT.txt and LICENSE.txt files in the "core" directory.
use Drupal\Core\DrupalKernel;
use Symfony\Component\HttpFoundation\Request;

Alex Pott
committed
$autoloader = require_once 'autoload.php';

Alex Pott
committed
$kernel = new DrupalKernel('prod', $autoloader);

Angie Byron
committed