blob: e1cd85747960161a2fe8874472c1622bffa844a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
use Drupal\Core\DrupalKernel;
function drupal7_bootstrap($config) {
define('DRUPAL_ROOT', $config['root_path']);
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
//require_once DRUPAL_ROOT . '/core/includes/common.inc';
require_once __DIR__ . '/BridgeDrupal7.php';
drupal_static('conf_path', "sites/{$config['site']}");
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
}
function drupal7_init($config) {
drupal7_bootstrap($config);
return new BridgeDrupal7();
}
function drupal7_session($config) {
drupal7_bootstrap($config);
return user_is_logged_in() ? $GLOBALS['user']->name : FALSE;
}
|