You are here

public static function JsProxyCache::setFullBootstrapAllowed in JS Callback Handler 7.2

Sets the flag indicating whether a full bootstrap can be performed.

Parameters

bool $allowed: The full bootstrap flag.

2 calls to JsProxyCache::setFullBootstrapAllowed()
JsProxyCache::doFullBootstrap in src/JsProxyCache.php
Fully bootstraps Drupal.
js_callback_bootstrap in includes/callback.inc
Bootstraps Drupal to the correct level based on callback info.

File

src/JsProxyCache.php, line 71

Class

JsProxyCache
JS custom cache handler.

Code

public static function setFullBootstrapAllowed($allowed) {
  static::$fullBootstrapAllowed = $allowed;
}