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