1.20.x installer.browser.inc installer_browser_check_zip_loaded()

Checks if PHP zip extension loaded on webserver.

File

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

Code

function installer_browser_check_zip_loaded() {
  $zip_loaded = array_key_exists('zip', archiver_get_info());
  if (!$zip_loaded) {
    backdrop_set_message(t('Sorry, it seems that the PHP .zip extension is not loaded on your server. You will not be able to download any projects using Project Installer until this is fixed. Please contact your website administrator.'), 'warning', FALSE);
  }
  return $zip_loaded;
}