UpdateManagerInterface::projectStorage

public UpdateManagerInterface::projectStorage($key)

Retrieves update storage data or empties it.

Two very expensive arrays computed by this module are the list of all installed modules and themes (and .info.yml data, project associations, etc), and the current status of the site relative to the currently available releases. These two arrays are stored and used whenever possible. The data is cleared whenever the administrator visits the status report, available updates report, or the module or theme administration pages, since we should always recompute the most current values on any of those pages.

Note: while both of these arrays are expensive to compute (in terms of disk I/O and some fairly heavy CPU processing), neither of these is the actual data about available updates that we have to fetch over the network from updates.drupal.org. That information is stored in the 'update_available_releases' collection -- it needs to persist longer than 1 hour and never get invalidated just by visiting a page on the site.

Parameters

string $key: The key of data to return. Valid options are 'update_project_data' and 'update_project_projects'.

Return value

array The stored value of the $projects array generated by update_calculate_project_data() or \Drupal\Update\UpdateManager::getProjects(), or an empty array when the storage is cleared. array when the storage is cleared.

File

core/modules/update/src/UpdateManagerInterface.php, line 100

Class

UpdateManagerInterface
Manages project update information.

Namespace

Drupal\update

Code

public function projectStorage($key);
doc_Drupal
2016-10-29 09:50:53
Comments
Leave a Comment

Please login to continue.