1 installer.browser.inc installer_browser_get_installed_types()

Determines the types of installed projects.

File

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

Code

function installer_browser_get_installed_types() {
  $types = array();
  $projects = installer_browser_get_installed_projects();
  foreach ($projects as $project) {
    $types[$project['type']] = $project['type'];
  }

  return $types;
}