You are here

public static function EvaluationImplementation::upgradeCheckJsonFinished in Drupal 8 upgrade evaluation 7

Same name and namespace in other branches
  1. 6 includes/EvaluationImplementation.php \Upgrade_check\EvaluationImplementation::upgradeCheckJsonFinished()

Implements upgrade_check_json_finished().

1 call to EvaluationImplementation::upgradeCheckJsonFinished()
_upgrade_check_json_finished in ./upgrade_check.module
Function called after batch processing.

File

includes/EvaluationImplementation.php, line 674

Class

EvaluationImplementation

Namespace

Upgrade_check

Code

public static function upgradeCheckJsonFinished($success) {
  if ($success) {
    drupal_goto(UPGRADE_CHECK_JSON);
  }
  else {
    drupal_set_message(t('There were errors during creating json file.Please try again'));
  }
  return FALSE;
}