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
Commits
19f5b353
Commit
19f5b353
authored
11 years ago
by
Alex Pott
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2193607
by andypost: Fix documentation in ConfigManager.
parent
af0f5628
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/lib/Drupal/Core/Config/ConfigManager.php
+12
-10
12 additions, 10 deletions
core/lib/Drupal/Core/Config/ConfigManager.php
core/lib/Drupal/Core/Config/ConfigManagerInterface.php
+1
-1
1 addition, 1 deletion
core/lib/Drupal/Core/Config/ConfigManagerInterface.php
with
13 additions
and
11 deletions
core/lib/Drupal/Core/Config/ConfigManager.php
+
12
−
10
View file @
19f5b353
...
...
@@ -50,6 +50,12 @@ class ConfigManager implements ConfigManagerInterface {
*
* @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
* The entity manager.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The configuration factory.
* @param \Drupal\Core\Config\TypedConfigManager $typed_config_manager
* The typed config manager.
* @param \Drupal\Core\StringTranslation\TranslationManager $string_translation
* The string translation service.
*/
public
function
__construct
(
EntityManagerInterface
$entity_manager
,
ConfigFactoryInterface
$config_factory
,
TypedConfigManager
$typed_config_manager
,
TranslationManager
$string_translation
)
{
$this
->
entityManager
=
$entity_manager
;
...
...
@@ -80,8 +86,8 @@ public function getEntityManager() {
*/
public
function
diff
(
StorageInterface
$source_storage
,
StorageInterface
$target_storage
,
$name
)
{
// @todo Replace with code that can be autoloaded.
// https://drupal.org/node/
2
18
8595
require_once
DRUPAL_ROOT
.
'/core/lib/Drupal
/Component/Diff/DiffEngine.php'
;
// https://drupal.org/node/18
48266
require_once
__DIR__
.
'/../..
/Component/Diff/DiffEngine.php'
;
// The output should show configuration object differences formatted as YAML.
// But the configuration is not necessarily stored in files. Therefore, they
...
...
@@ -108,7 +114,7 @@ public function diff(StorageInterface $source_storage, StorageInterface $target_
/**
* {@inheritdoc}
*/
function
createSnapshot
(
StorageInterface
$source_storage
,
StorageInterface
$snapshot_storage
)
{
public
function
createSnapshot
(
StorageInterface
$source_storage
,
StorageInterface
$snapshot_storage
)
{
$snapshot_storage
->
deleteAll
();
foreach
(
$source_storage
->
listAll
()
as
$name
)
{
$snapshot_storage
->
write
(
$name
,
$source_storage
->
read
(
$name
));
...
...
@@ -116,14 +122,9 @@ function createSnapshot(StorageInterface $source_storage, StorageInterface $snap
}
/**
* Uninstalls the default configuration of a given extension.
*
* @param string $type
* The extension type; e.g., 'module' or 'theme'.
* @param string $name
* The name of the module or theme to install default configuration for.
* {@inheritdoc}
*/
function
uninstall
(
$type
,
$name
)
{
public
function
uninstall
(
$type
,
$name
)
{
$config_names
=
$this
->
configFactory
->
listAll
(
$name
.
'.'
);
foreach
(
$config_names
as
$config_name
)
{
$this
->
configFactory
->
get
(
$config_name
)
->
delete
();
...
...
@@ -135,4 +136,5 @@ function uninstall($type, $name) {
$this
->
typedConfigManager
->
clearCachedDefinitions
();
}
}
}
This diff is collapsed.
Click to expand it.
core/lib/Drupal/Core/Config/ConfigManagerInterface.php
+
1
−
1
View file @
19f5b353
...
...
@@ -21,7 +21,7 @@ interface ConfigManagerInterface {
* @return string|null
* Either the entity type name, or NULL if none match.
*/
function
getEntityTypeIdByName
(
$name
);
public
function
getEntityTypeIdByName
(
$name
);
/**
* Gets the entity manager.
...
...
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