Skip to content

Instantly share code, notes, and snippets.

@delineas
Created April 7, 2016 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delineas/755ba39242b4f706fa9572abd6ed18e0 to your computer and use it in GitHub Desktop.
Save delineas/755ba39242b4f706fa9572abd6ed18e0 to your computer and use it in GitHub Desktop.
Drupal 7 Bootsrap Level
<?php
if (drupal_get_bootstrap_phase() >= DRUPAL_BOOTSTRAP_FULL) {
$message = theme('item_list', array());
}
// On earlier bootstrap stages not all theme functions are available.
else {
$message = theme_item_list(array());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment