You are here

function drupalize in Brilliant Gallery 5.4

Same name and namespace in other branches
  1. 5.3 image.php \drupalize()
  2. 6 image.php \drupalize()
  3. 6.2 image.php \drupalize()
  4. 6.3 image.php \drupalize()
1 call to drupalize()
image.php in ./image.php

File

./image.php, line 11

Code

function drupalize() {
  while (!@stat('./includes/bootstrap.inc')) {
    chdir('..');
  }
  require_once './includes/bootstrap.inc';

  #drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
  drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE);

  #drupal_cron_run();
}