You are here

function upgrade_check_preprocess_html in Drupal 8 upgrade evaluation 7

Implements hook_preprocess_html().

File

./upgrade_check.module, line 148

Code

function upgrade_check_preprocess_html(&$vars) {
  if (drupal_is_front_page()) {
    return \Upgrade_check\EvaluationImplementation::upgradeCheckAddMetatag($vars);
  }
  return FALSE;
}