src/Drupal/Driver/Cores/Drupal6.php 1 location
|
@@ 29-33 (lines=5) @@
|
| 26 |
|
*/ |
| 27 |
|
public function bootstrap() { |
| 28 |
|
// Validate, and prepare environment for Drupal bootstrap. |
| 29 |
|
if (!defined('DRUPAL_ROOT')) { |
| 30 |
|
define('DRUPAL_ROOT', $this->drupalRoot); |
| 31 |
|
require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; |
| 32 |
|
$this->validateDrupalSite(); |
| 33 |
|
} |
| 34 |
|
|
| 35 |
|
// Bootstrap Drupal. |
| 36 |
|
$current_path = getcwd(); |
src/Drupal/Driver/Cores/Drupal7.php 1 location
|
@@ 24-28 (lines=5) @@
|
| 21 |
|
*/ |
| 22 |
|
public function bootstrap() { |
| 23 |
|
// Validate, and prepare environment for Drupal bootstrap. |
| 24 |
|
if (!defined('DRUPAL_ROOT')) { |
| 25 |
|
define('DRUPAL_ROOT', $this->drupalRoot); |
| 26 |
|
require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; |
| 27 |
|
$this->validateDrupalSite(); |
| 28 |
|
} |
| 29 |
|
|
| 30 |
|
// Bootstrap Drupal. |
| 31 |
|
chdir(DRUPAL_ROOT); |