You are here

function boost_stats_full_boot in Boost 6

1 call to boost_stats_full_boot()
boost_stats_output_stats_block in stats/boost_stats.php

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;
}