You are here

function advagg_bundler_requirements in Advanced CSS/JS Aggregation 6

Same name and namespace in other branches
  1. 7 advagg_bundler/advagg_bundler.install \advagg_bundler_requirements()

Implementation of hook_requirements().

File

advagg_bundler/advagg_bundler.install, line 53
Handles AdvAgg Bundler installation and upgrade tasks.

Code

function advagg_bundler_requirements($phase) {
  $requirements = array();

  // Ensure translations don't break at install time
  $t = get_t();
  if ($phase == 'runtime') {
  }
  return $requirements;
}