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
2b24e721
Commit
2b24e721
authored
10 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2183929
by cilefen, tim.plunkett: Allow \Drupal:: call in BlockBase to be bypassed.
parent
8e3819bd
No related branches found
Branches containing commit
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/Block/BlockBase.php
+31
-2
31 additions, 2 deletions
core/lib/Drupal/Core/Block/BlockBase.php
core/tests/Drupal/Tests/Core/Block/BlockBaseTest.php
+2
-1
2 additions, 1 deletion
core/tests/Drupal/Tests/Core/Block/BlockBaseTest.php
with
33 additions
and
3 deletions
core/lib/Drupal/Core/Block/BlockBase.php
+
31
−
2
View file @
2b24e721
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
use
Drupal\Core\Language\LanguageInterface
;
use
Drupal\Core\Language\LanguageInterface
;
use
Drupal\Core\Cache\Cache
;
use
Drupal\Core\Cache\Cache
;
use
Drupal\Core\Session\AccountInterface
;
use
Drupal\Core\Session\AccountInterface
;
use
Drupal\Component\Transliteration\TransliterationInterface
;
/**
/**
* Defines a base block implementation that most blocks plugins will extend.
* Defines a base block implementation that most blocks plugins will extend.
...
@@ -49,6 +50,13 @@ abstract class BlockBase extends ContextAwarePluginBase implements BlockPluginIn
...
@@ -49,6 +50,13 @@ abstract class BlockBase extends ContextAwarePluginBase implements BlockPluginIn
*/
*/
protected
$conditionPluginManager
;
protected
$conditionPluginManager
;
/**
* The transliteration service.
*
* @var \Drupal\Component\Transliteration\TransliterationInterface
*/
protected
$transliteration
;
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*/
*/
...
@@ -407,8 +415,7 @@ public function getMachineNameSuggestion() {
...
@@ -407,8 +415,7 @@ public function getMachineNameSuggestion() {
// @todo This is basically the same as what is done in
// @todo This is basically the same as what is done in
// \Drupal\system\MachineNameController::transliterate(), so it might make
// \Drupal\system\MachineNameController::transliterate(), so it might make
// sense to provide a common service for the two.
// sense to provide a common service for the two.
$transliteration_service
=
\Drupal
::
transliteration
();
$transliterated
=
$this
->
transliteration
()
->
transliterate
(
$admin_label
,
LanguageInterface
::
LANGCODE_DEFAULT
,
'_'
);
$transliterated
=
$transliteration_service
->
transliterate
(
$admin_label
,
LanguageInterface
::
LANGCODE_DEFAULT
,
'_'
);
$replace_pattern
=
'[^a-z0-9_.]+'
;
$replace_pattern
=
'[^a-z0-9_.]+'
;
...
@@ -421,6 +428,28 @@ public function getMachineNameSuggestion() {
...
@@ -421,6 +428,28 @@ public function getMachineNameSuggestion() {
return
$transliterated
;
return
$transliterated
;
}
}
/**
* Wraps the transliteration service.
*
* @return \Drupal\Component\Transliteration\TransliterationInterface
*/
protected
function
transliteration
()
{
if
(
!
$this
->
transliteration
)
{
$this
->
transliteration
=
\Drupal
::
transliteration
();
}
return
$this
->
transliteration
;
}
/**
* Sets the transliteration service.
*
* @param \Drupal\Component\Transliteration\TransliterationInterface $transliteration
* The transliteration service.
*/
public
function
setTransliteration
(
TransliterationInterface
$transliteration
)
{
$this
->
transliteration
=
$transliteration
;
}
/**
/**
* Returns the cache contexts required for this block.
* Returns the cache contexts required for this block.
*
*
...
...
This diff is collapsed.
Click to expand it.
core/tests/Drupal/Tests/Core/Block/BlockBaseTest.php
+
2
−
1
View file @
2b24e721
...
@@ -34,7 +34,6 @@ public function testGetMachineNameSuggestion() {
...
@@ -34,7 +34,6 @@ public function testGetMachineNameSuggestion() {
->
will
(
$this
->
returnValue
(
array
()));
->
will
(
$this
->
returnValue
(
array
()));
$container
=
new
ContainerBuilder
();
$container
=
new
ContainerBuilder
();
$container
->
set
(
'plugin.manager.condition'
,
$condition_plugin_manager
);
$container
->
set
(
'plugin.manager.condition'
,
$condition_plugin_manager
);
$container
->
set
(
'transliteration'
,
$transliteraton
);
\Drupal
::
setContainer
(
$container
);
\Drupal
::
setContainer
(
$container
);
$config
=
array
();
$config
=
array
();
...
@@ -43,6 +42,7 @@ public function testGetMachineNameSuggestion() {
...
@@ -43,6 +42,7 @@ public function testGetMachineNameSuggestion() {
'provider'
=>
'block_test'
,
'provider'
=>
'block_test'
,
);
);
$block_base
=
new
TestBlockInstantiation
(
$config
,
'test_block_instantiation'
,
$definition
);
$block_base
=
new
TestBlockInstantiation
(
$config
,
'test_block_instantiation'
,
$definition
);
$block_base
->
setTransliteration
(
$transliteraton
);
$this
->
assertEquals
(
'adminlabel'
,
$block_base
->
getMachineNameSuggestion
());
$this
->
assertEquals
(
'adminlabel'
,
$block_base
->
getMachineNameSuggestion
());
// Test with more unicodes.
// Test with more unicodes.
...
@@ -51,6 +51,7 @@ public function testGetMachineNameSuggestion() {
...
@@ -51,6 +51,7 @@ public function testGetMachineNameSuggestion() {
'provider'
=>
'block_test'
,
'provider'
=>
'block_test'
,
);
);
$block_base
=
new
TestBlockInstantiation
(
$config
,
'test_block_instantiation'
,
$definition
);
$block_base
=
new
TestBlockInstantiation
(
$config
,
'test_block_instantiation'
,
$definition
);
$block_base
->
setTransliteration
(
$transliteraton
);
$this
->
assertEquals
(
'uberawesome'
,
$block_base
->
getMachineNameSuggestion
());
$this
->
assertEquals
(
'uberawesome'
,
$block_base
->
getMachineNameSuggestion
());
}
}
...
...
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