private function EvaluationImplementation::upgradeCheckThemesData in Drupal 8 upgrade evaluation 6
Same name and namespace in other branches
- 7 includes/EvaluationImplementation.php \Upgrade_check\EvaluationImplementation::upgradeCheckThemesData()
Fetch data of all enabled themes.
File
- includes/
EvaluationImplementation.php, line 510
Class
Namespace
Upgrade_checkCode
private function upgradeCheckThemesData(&$operations) {
$system = $this
->systemList('theme');
foreach ($system as $theme) {
$operations[] = array(
'_upgrade_check_themes_evaluation',
array(
'theme' => (array) $theme,
),
);
}
return NULL;
}