You are here

function update_status_process_project_info in Update Status 5.2

Process the list of projects on the system to figure out the currently installed versions, and other information that is required before we can compare against the available releases to produce the status report.

Parameters

$projects: Array of project information from update_status_get_projects().

1 call to update_status_process_project_info()
update_status_calculate_project_data in ./update_status.module
Given the installed projects and the available release data retrieved from remote servers, calculate the current status.

File

./update_status.module, line 840

Code

function update_status_process_project_info(&$projects) {
  foreach ($projects as $key => $project) {

    // Assume an official release until we see otherwise.
    $type = 'official';
    $info = $project['info'];
    if (isset($info['version'])) {

      // Check for development snapshots
      if (preg_match('@(dev|HEAD)@', $info['version'])) {
        $type = 'dev';
      }

      // Figure out what the currently installed major version is. We need
      // to handle both contribution (e.g. "5.x-1.3", major = 1) and core
      // (e.g. "5.1", major = 5) version strings.
      $matches = array();
      if (preg_match('/^(\\d+\\.x-)?(\\d+)\\..*$/', $info['version'], $matches)) {
        $info['major'] = $matches[2];
      }
      elseif (!isset($info['major'])) {

        // This would only happen for version strings that don't follow the
        // drupal.org convention. We let contribs define "major" in their
        // .info in this case, and only if that's missing would we hit this.
        $info['major'] = -1;
      }
    }
    else {

      // No version info available at all.
      $type = 'unknown';
      $info['version'] = t('Unknown');
      $info['major'] = -1;
    }

    // Finally, save the results we care about into the $projects array.
    $projects[$key]['existing_version'] = $info['version'];
    $projects[$key]['existing_major'] = $info['major'];
    $projects[$key]['type'] = $type;
    unset($projects[$key]['info']);
  }
}