summaryrefslogtreecommitdiff
path: root/plugins/drupal8/drupal8.module
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/drupal8/drupal8.module')
-rw-r--r--plugins/drupal8/drupal8.module16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/drupal8/drupal8.module b/plugins/drupal8/drupal8.module
new file mode 100644
index 0000000..390b678
--- /dev/null
+++ b/plugins/drupal8/drupal8.module
@@ -0,0 +1,16 @@
+<?php
+
+use Drupal\Core\DrupalKernel;
+
+function drupal8_init($config) {
+ define('DRUPAL_ROOT', $config['root_path']);
+ $_SERVER['REMOTE_ADDR'] = '127.0.0.1';
+ require_once DRUPAL_ROOT . '/core/includes/bootstrap.inc';
+ require_once DRUPAL_ROOT . '/core/includes/common.inc';
+ require_once __DIR__ . '/BridgeDrupal8.php';
+ drupal_static('conf_path', "sites/{$config['site']}");
+ drupal_bootstrap(DRUPAL_BOOTSTRAP_CODE);
+ $kernel = new DrupalKernel('prod', FALSE, NULL, cache('bootstrap'));
+ $kernel->boot();
+ return new BridgeDrupal8();
+} \ No newline at end of file