You are here

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

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

Fetch data of all enabled themes.

File

includes/EvaluationImplementation.php, line 510

Class

EvaluationImplementation

Namespace

Upgrade_check

Code

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