Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
domain_language
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
domain_language
Commits
317ea000
Commit
317ea000
authored
5 months ago
by
Pravin Gaikwad
Browse files
Options
Downloads
Patches
Plain Diff
Drupal 11 compatibility fixes
parent
ec7f4da3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!14
Drupal 11 compatibility fixes
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+6
-46
6 additions, 46 deletions
.gitlab-ci.yml
domain_language.services.yml
+5
-1
5 additions, 1 deletion
domain_language.services.yml
src/DomainLanguageOverrider.php
+4
-4
4 additions, 4 deletions
src/DomainLanguageOverrider.php
with
15 additions
and
51 deletions
.gitlab-ci.yml
+
6
−
46
View file @
317ea000
...
...
@@ -51,49 +51,9 @@ include:
# variables:
# SKIP_ESLINT: '1'
###################################################################################
#
# *
# /(
# ((((,
# /(((((((
# ((((((((((*
# ,(((((((((((((((
# ,(((((((((((((((((((
# ((((((((((((((((((((((((*
# *(((((((((((((((((((((((((((((
# ((((((((((((((((((((((((((((((((((*
# *(((((((((((((((((( .((((((((((((((((((
# ((((((((((((((((((. /(((((((((((((((((*
# /((((((((((((((((( .(((((((((((((((((,
# ,(((((((((((((((((( ((((((((((((((((((
# .(((((((((((((((((((( .(((((((((((((((((
# ((((((((((((((((((((((( ((((((((((((((((/
# (((((((((((((((((((((((((((/ ,(((((((((((((((*
# .((((((((((((((/ /(((((((((((((. ,(((((((((((((((
# *(((((((((((((( ,(((((((((((((/ *((((((((((((((.
# ((((((((((((((, /(((((((((((((. ((((((((((((((,
# (((((((((((((/ ,(((((((((((((* ,(((((((((((((,
# *((((((((((((( .((((((((((((((( ,(((((((((((((
# ((((((((((((/ /((((((((((((((((((. ,((((((((((((/
# ((((((((((((( *(((((((((((((((((((((((* *((((((((((((
# ((((((((((((( ,(((((((((((((..((((((((((((( *((((((((((((
# ((((((((((((, /((((((((((((* /((((((((((((/ ((((((((((((
# ((((((((((((( /((((((((((((/ (((((((((((((* ((((((((((((
# (((((((((((((/ /(((((((((((( ,((((((((((((, *((((((((((((
# (((((((((((((( *(((((((((((/ *((((((((((((. ((((((((((((/
# *((((((((((((((((((((((((((, /(((((((((((((((((((((((((
# ((((((((((((((((((((((((( ((((((((((((((((((((((((,
# .(((((((((((((((((((((((/ ,(((((((((((((((((((((((
# ((((((((((((((((((((((/ ,(((((((((((((((((((((/
# *((((((((((((((((((((( (((((((((((((((((((((,
# ,(((((((((((((((((((((, ((((((((((((((((((((/
# ,(((((((((((((((((((((* /((((((((((((((((((((
# ((((((((((((((((((((((, ,/((((((((((((((((((((,
# ,(((((((((((((((((((((((((((((((((((((((((((((((((((
# .(((((((((((((((((((((((((((((((((((((((((((((
# .((((((((((((((((((((((((((((((((((((,.
# .,(((((((((((((((((((((((((.
#
###################################################################################
# Broaden test coverage.
OPT_IN_TEST_PREVIOUS_MAJOR
:
1
OPT_IN_TEST_MAX_PHP
:
1
OPT_IN_TEST_PREVIOUS_MINOR
:
1
OPT_IN_TEST_NEXT_MINOR
:
1
OPT_IN_TEST_NEXT_MAJOR
:
1
\ No newline at end of file
This diff is collapsed.
Click to expand it.
domain_language.services.yml
+
5
−
1
View file @
317ea000
...
...
@@ -3,4 +3,8 @@ services:
class
:
Drupal\domain_language\DomainLanguageOverrider
tags
:
-
{
name
:
config.factory.override
,
priority
:
-140
}
arguments
:
[
'
@config.storage'
]
arguments
:
-
'
@current_user'
-
'
@domain.negotiator'
-
'
@config.factory'
-
'
@domain_config.overrider'
This diff is collapsed.
Click to expand it.
src/DomainLanguageOverrider.php
+
4
−
4
View file @
317ea000
...
...
@@ -7,7 +7,7 @@ use Drupal\Core\Cache\CacheableMetadata;
use
Drupal\Core\Config\ConfigFactoryOverrideInterface
;
use
Drupal\Core\Config\ConfigFactoryInterface
;
use
Drupal\Core\Session\AccountProxyInterface
;
use
Drupal\domain_config
\Overrider
Interface
;
use
Drupal\domain_config
\
DomainConfig
Overrider
;
use
Symfony\Component\DependencyInjection\ContainerInterface
;
/**
...
...
@@ -41,7 +41,7 @@ class DomainLanguageOverrider implements ConfigFactoryOverrideInterface {
/**
* The domain config overrider service.
*
* @var \Drupal\domain_config\Overrider
Interface
* @var \Drupal\domain_config\
DomainConfig
Overrider
*/
protected
$overrider
;
...
...
@@ -75,10 +75,10 @@ class DomainLanguageOverrider implements ConfigFactoryOverrideInterface {
* The domain negotiator.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The configuration factory.
* @param \Drupal\domain_config\Overrider
Interface
$overrider
* @param \Drupal\domain_config\
DomainConfig
Overrider $overrider
* The domain config overrider service.
*/
public
function
__construct
(
AccountProxyInterface
$current_user
,
DomainNegotiatorInterface
$domain_negotiator
,
ConfigFactoryInterface
$config_factory
,
Overrider
Interface
$overrider
)
{
public
function
__construct
(
AccountProxyInterface
$current_user
,
DomainNegotiatorInterface
$domain_negotiator
,
ConfigFactoryInterface
$config_factory
,
DomainConfig
Overrider
$overrider
)
{
$this
->
currentUser
=
$current_user
;
$this
->
domainNegotiator
=
$domain_negotiator
;
$this
->
configFactory
=
$config_factory
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment