You are here

private function EvaluationImplementation::upgradeCheckThemesData in Drupal 8 upgrade evaluation 7

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

Fetch data of all enabled themes.

File

includes/EvaluationImplementation.php, line 528

Class

EvaluationImplementation

Namespace

Upgrade_check

Code

private function upgradeCheckThemesData(&$operations) {
  $themes = system_list('theme');
  foreach ($themes as $theme) {
    $operations[] = array(
      '_upgrade_check_themes_evaluation',
      array(
        'theme' => (array) $theme,
      ),
    );
  }
  return NULL;
}