function boost_stats_full_boot in Boost 6
1 call to boost_stats_full_boot()
File
- stats/
boost_stats.php, line 166 - Place in webroot, for faster stats if needed.
Code
function boost_stats_full_boot() {
global $full_boot;
if (!isset($full_boot)) {
$full_boot = FALSE;
}
if (!$full_boot) {
include_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
}
$full_boot = TRUE;
}