1 update.module _update_get_cached_available_releases()

Returns all currently cached data about available releases for all projects.

Return value

Array of data about available releases, keyed by project machine name.:

File

core/modules/update/update.module, line 409
Handles update checking for Backdrop core and contributed projects.

Code

function _update_get_cached_available_releases() {
  $data = array();
  $cache_items = _update_get_cache_multiple('available_releases');
  foreach ($cache_items as $cid => $cache) {
    $cache->data['last_fetch'] = $cache->created;
    if ($cache->expire < REQUEST_TIME) {
      $cache->data['fetch_status'] = UPDATE_FETCH_PENDING;
    }
    // The project machine name is embedded in the cache ID, even if there's no
    // data for this project in the DB at all, so use that for the indexes in
    // the array.
    $parts = explode('::', $cid, 2);
    $data[$parts[1]] = $cache->data;
  }
  return $data;
}