Returns a page about the update status of projects.
array A build array with the update status of projects.
public function updateStatus() {
$build = array(
'#theme' => 'update_report',
);
if ($available = update_get_available(TRUE)) {
$this->moduleHandler
->loadInclude('update', 'compare.inc');
$build['#data'] = update_calculate_project_data($available);
}
else {
$build['#data'] = _update_no_data();
}
return $build;
}