Same name and namespace in other branches
  1. 8.9.x core/includes/common.inc \archiver_get_extensions()

Returns a string of supported archive extensions.

Return value

A space-separated string of extensions suitable for use by the file validation system.

2 calls to archiver_get_extensions()
UpdateTestUploadCase::testUploadModule in modules/update/update.test
Tests upload and extraction of a module.
update_manager_install_form in modules/update/update.manager.inc
Form constructor for the install form of the Update Manager module.

File

includes/common.inc, line 8548
Common functions that many Drupal modules will need to reference.

Code

function archiver_get_extensions() {
  $valid_extensions = array();
  foreach (archiver_get_info() as $archive) {
    foreach ($archive['extensions'] as $extension) {
      foreach (explode('.', $extension) as $part) {
        if (!in_array($part, $valid_extensions)) {
          $valid_extensions[] = $part;
        }
      }
    }
  }
  return implode(' ', $valid_extensions);
}