function adserve_bootstrap in Advertisement 7
Same name and namespace in other branches
- 5.2 adserve.inc \adserve_bootstrap()
- 5 adserve.inc \adserve_bootstrap()
- 6.3 adserve.inc \adserve_bootstrap()
- 6 adserve.inc \adserve_bootstrap()
- 6.2 adserve.inc \adserve_bootstrap()
Include the necessary files and call the Drupal bootstrap.
4 calls to adserve_bootstrap()
- adserve_ad in ./
adserve.inc - The main adserve logic.
- adserve_cache_open in ./
adcache.inc - Default initialization function, fully bootstraps Drupal to gain access to the database.
- adserve_counter_image in ./
imageserve.inc - Generate a tiny image with GD, used to count when an ad has been displayed on a cached page.
- ad_cache_file_rebuild in cache/
file/ ad_cache_file.inc - Bootstrap drupal, then run ad_cache_file_build() from ad.module which will rebuild all cache files.
File
- ./
adserve.inc, line 280 - Configuration.
Code
function adserve_bootstrap($bootstrap = NULL) {
adserve_include_drupal();
// If no specific bootstrap is specified, do a full bootstrap.
if (!isset($bootstrap)) {
$bootstrap = DRUPAL_BOOTSTRAP_FULL;
}
echo _debug_echo("Drupal bootstrap '{$bootstrap}'.");
drupal_bootstrap($bootstrap);
echo _debug_echo("Drupal bootstrap complete.");
}