1 installer.browser.inc installer_browser_installed_projects_remove($project_names)

Removes a project from the list of recently installed projects.

@since 1.10.1

Parameters

string[] $project_names: A list of projects to remove from the installed project list.

File

core/modules/installer/installer.browser.inc, line 118
Various functions that are required by the Installer browse pages.

Code

function installer_browser_installed_projects_remove($project_names) {
  foreach ($project_names as $project_name) {
    if (isset($_SESSION['installer_browser_installed_projects'][$project_name])) {
      unset($_SESSION['installer_browser_installed_projects'][$project_name]);
    }
  }
}