1 installer.browser.inc installer_browser_get_installed_projects()

Gets the newly installed projects from the session.

File

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

Code

function installer_browser_get_installed_projects() {
  $projects = array();

  if (isset($_SESSION['installer_browser_installed_projects'])) {
    foreach ($_SESSION['installer_browser_installed_projects'] as $project) {
      if (is_array($project) && !empty($project)) {
        $projects[$project['name']] = $project;
      }
    }
  }

  return $projects;
}