Skip to content
Snippets Groups Projects
Commit 2b24e721 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2183929 by cilefen, tim.plunkett: Allow \Drupal:: call in BlockBase to be bypassed.

parent 8e3819bd
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -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.
* *
......
...@@ -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());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment