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
4c3b3764
Commit
4c3b3764
authored
8 years ago
by
catch
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2708379
by alexpott: Add uuid service to core.services.yml
parent
4376b33c
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/core.services.yml
+2
-1
2 additions, 1 deletion
core/core.services.yml
core/lib/Drupal/Core/CoreServiceProvider.php
+7
-14
7 additions, 14 deletions
core/lib/Drupal/Core/CoreServiceProvider.php
with
9 additions
and
15 deletions
core/core.services.yml
+
2
−
1
View file @
4c3b3764
...
@@ -1600,7 +1600,8 @@ services:
...
@@ -1600,7 +1600,8 @@ services:
update.post_update_registry_factory
:
update.post_update_registry_factory
:
class
:
Drupal\Core\Update\UpdateRegistryFactory
class
:
Drupal\Core\Update\UpdateRegistryFactory
parent
:
container.trait
parent
:
container.trait
uuid
:
class
:
Drupal\Component\Uuid\Php
response_filter.active_link
:
response_filter.active_link
:
class
:
Drupal\Core\EventSubscriber\ActiveLinkResponseFilter
class
:
Drupal\Core\EventSubscriber\ActiveLinkResponseFilter
arguments
:
[
'
@current_user'
,
'
@path.current'
,
'
@path.matcher'
,
'
@language_manager'
]
arguments
:
[
'
@current_user'
,
'
@path.current'
,
'
@path.matcher'
,
'
@language_manager'
]
...
...
This diff is collapsed.
Click to expand it.
core/lib/Drupal/Core/CoreServiceProvider.php
+
7
−
14
View file @
4c3b3764
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
use
Drupal\Core\DependencyInjection\Compiler\StackedSessionHandlerPass
;
use
Drupal\Core\DependencyInjection\Compiler\StackedSessionHandlerPass
;
use
Drupal\Core\DependencyInjection\Compiler\RegisterStreamWrappersPass
;
use
Drupal\Core\DependencyInjection\Compiler\RegisterStreamWrappersPass
;
use
Drupal\Core\DependencyInjection\Compiler\TwigExtensionPass
;
use
Drupal\Core\DependencyInjection\Compiler\TwigExtensionPass
;
use
Drupal\Core\DependencyInjection\ServiceModifierInterface
;
use
Drupal\Core\DependencyInjection\ServiceProviderInterface
;
use
Drupal\Core\DependencyInjection\ServiceProviderInterface
;
use
Drupal\Core\DependencyInjection\ContainerBuilder
;
use
Drupal\Core\DependencyInjection\ContainerBuilder
;
use
Drupal\Core\DependencyInjection\Compiler\ModifyServiceDefinitionsPass
;
use
Drupal\Core\DependencyInjection\Compiler\ModifyServiceDefinitionsPass
;
...
@@ -39,13 +40,12 @@
...
@@ -39,13 +40,12 @@
*
*
* @ingroup container
* @ingroup container
*/
*/
class
CoreServiceProvider
implements
ServiceProviderInterface
{
class
CoreServiceProvider
implements
ServiceProviderInterface
,
ServiceModifierInterface
{
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*/
*/
public
function
register
(
ContainerBuilder
$container
)
{
public
function
register
(
ContainerBuilder
$container
)
{
$this
->
registerUuid
(
$container
);
$this
->
registerTest
(
$container
);
$this
->
registerTest
(
$container
);
// Only register the private file stream wrapper if a file path has been set.
// Only register the private file stream wrapper if a file path has been set.
...
@@ -98,30 +98,23 @@ public function register(ContainerBuilder $container) {
...
@@ -98,30 +98,23 @@ public function register(ContainerBuilder $container) {
}
}
/**
/**
*
Determines and registers the UUID servic
e.
*
Alters the UUID service to use the most efficient method availabl
e.
*
*
* @param \Drupal\Core\DependencyInjection\ContainerBuilder $container
* @param \Drupal\Core\DependencyInjection\ContainerBuilder $container
* The container builder.
* The container builder.
*
* @return string
* Class name for the UUID service.
*/
*/
public
static
function
registerUuid
(
ContainerBuilder
$container
)
{
public
function
alter
(
ContainerBuilder
$container
)
{
$uuid_class
=
'Drupal\Component\Uuid\Php'
;
$uuid_service
=
$container
->
getDefinition
(
'uuid'
);
// Debian/Ubuntu uses the (broken) OSSP extension as their UUID
// Debian/Ubuntu uses the (broken) OSSP extension as their UUID
// implementation. The OSSP implementation is not compatible with the
// implementation. The OSSP implementation is not compatible with the
// PECL functions.
// PECL functions.
if
(
function_exists
(
'uuid_create'
)
&&
!
function_exists
(
'uuid_make'
))
{
if
(
function_exists
(
'uuid_create'
)
&&
!
function_exists
(
'uuid_make'
))
{
$uuid_
c
lass
=
'Drupal\Component\Uuid\Pecl'
;
$uuid_
service
->
setC
lass
(
'Drupal\Component\Uuid\Pecl'
)
;
}
}
// Try to use the COM implementation for Windows users.
// Try to use the COM implementation for Windows users.
elseif
(
function_exists
(
'com_create_guid'
))
{
elseif
(
function_exists
(
'com_create_guid'
))
{
$uuid_
c
lass
=
'Drupal\Component\Uuid\Com'
;
$uuid_
service
->
setC
lass
(
'Drupal\Component\Uuid\Com'
)
;
}
}
$container
->
register
(
'uuid'
,
$uuid_class
);
return
$uuid_class
;
}
}
/**
/**
...
...
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