Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
menu_breadcrumb
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
menu_breadcrumb
Merge requests
!4
Resolve
#3215110
"Add automated test"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve
#3215110
"Add automated test"
issue/menu_breadcrumb-3215110:3215110-add-automated-test
into
2.0.x
Overview
5
Commits
19
Pipelines
12
Changes
11
1 unresolved thread
Show all comments
Merged
Chris Burgess
requested to merge
issue/menu_breadcrumb-3215110:3215110-add-automated-test
into
2.0.x
3 years ago
Overview
5
Commits
19
Pipelines
12
Changes
11
1 unresolved thread
Show all comments
Expand
Closes
#3215110
0
0
Merge request reports
Compare
2.0.x
version 17
902d204c
1 year ago
version 16
2c3a7682
1 year ago
version 15
f94788a7
1 year ago
version 14
87236808
1 year ago
version 13
aa458e14
1 year ago
version 12
3745aa7d
1 year ago
version 11
303d30d3
1 year ago
version 10
38dd8c19
1 year ago
version 9
f2eb99cf
1 year ago
version 8
8fd73aa3
1 year ago
version 7
bd41b8d2
2 years ago
version 6
e9a7562a
2 years ago
version 5
e9a7562a
2 years ago
version 4
a2c3e0b7
2 years ago
version 3
bf2b1ee5
3 years ago
version 2
418bee6c
3 years ago
version 1
bd51a278
3 years ago
2.0.x (base)
and
latest version
latest version
e02eb15a
19 commits,
1 year ago
version 17
902d204c
18 commits,
1 year ago
version 16
2c3a7682
17 commits,
1 year ago
version 15
f94788a7
15 commits,
1 year ago
version 14
87236808
14 commits,
1 year ago
version 13
aa458e14
13 commits,
1 year ago
version 12
3745aa7d
12 commits,
1 year ago
version 11
303d30d3
9 commits,
1 year ago
version 10
38dd8c19
8 commits,
1 year ago
version 9
f2eb99cf
7 commits,
1 year ago
version 8
8fd73aa3
6 commits,
1 year ago
version 7
bd41b8d2
5 commits,
2 years ago
version 6
e9a7562a
5 commits,
2 years ago
version 5
e9a7562a
6 commits,
2 years ago
version 4
a2c3e0b7
5 commits,
2 years ago
version 3
bf2b1ee5
4 commits,
3 years ago
version 2
418bee6c
4 commits,
3 years ago
version 1
bd51a278
4 commits,
3 years ago
11 files
+
521
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
src/Form/SettingsForm.php
+
7
−
3
Options
@@ -28,12 +28,15 @@ class SettingsForm extends ConfigFormBase {
* Used to obtain configuration information.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\Core\Config\TypedConfigManagerInterface|null $typedConfigManager
* The typed config manager.
*/
public
function
__construct
(
ConfigFactoryInterface
$config_factory
,
EntityTypeManagerInterface
$entity_type_manager
EntityTypeManagerInterface
$entity_type_manager
,
protected
$typedConfigManager
=
NULL
)
{
parent
::
__construct
(
$config_factory
);
parent
::
__construct
(
$config_factory
,
$typedConfigManager
);
$this
->
entityTypeManager
=
$entity_type_manager
;
}
@@ -43,7 +46,8 @@ class SettingsForm extends ConfigFormBase {
public
static
function
create
(
ContainerInterface
$container
)
{
return
new
static
(
$container
->
get
(
'config.factory'
),
$container
->
get
(
'entity_type.manager'
)
$container
->
get
(
'entity_type.manager'
),
$container
->
get
(
'config.typed'
)
);
}
Loading