Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!8424
Correct references to removed hook_archiver_info()
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Correct references to removed hook_archiver_info()
issue/drupal-3454891:3454891-correct-references-to
into
11.x
Overview
3
Commits
4
Pipelines
5
Changes
1
1 unresolved thread
Hide all comments
Closed
quietone
requested to merge
issue/drupal-3454891:3454891-correct-references-to
into
11.x
11 months ago
Overview
3
Commits
4
Pipelines
5
Changes
1
1 unresolved thread
Hide all comments
Expand
Closes
#3454891
0
0
Merge request reports
Compare
11.x
version 4
a0e0bd9c
11 months ago
version 3
3197964a
11 months ago
version 2
2eb2c89f
11 months ago
version 1
93cc4ced
11 months ago
11.x (base)
and
latest version
latest version
abb0bebf
4 commits,
4 months ago
version 4
a0e0bd9c
3 commits,
11 months ago
version 3
3197964a
2 commits,
11 months ago
version 2
2eb2c89f
1 commit,
11 months ago
version 1
93cc4ced
144 commits,
11 months ago
1 file
+
5
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
core/lib/Drupal/Core/File/file.api.php
+
5
−
4
Options
@@ -133,11 +133,12 @@ function hook_file_mimetype_mapping_alter(&$mapping) {
/**
* Alter archiver information declared by other modules.
*
* See hook_archiver_info() for a description of archivers and the archiver
* information structure.
*
* @param array $info
* Archiver information to alter (return values from hook_archiver_info()).
* An associative array of archivers, keyed by archiver ID. Each value
* consists of the plugin definition for that archiver.
*
* @see \Drupal\Core\Archiver\ArchiverManager
* @see \Drupal\Core\Archiver\Attribute\Archiver
*/
function
hook_archiver_info_alter
(
&
$info
)
{
$info
[
'tar'
][
'extensions'
][]
=
'tgz'
;
Loading