function BlockPluginTrait::getMachineNameSuggestion

File

core/lib/Drupal/Core/Block/BlockPluginTrait.php, line 247

Class

BlockPluginTrait
Provides the base implementation of a block plugin.

Namespace

Drupal\Core\Block

Code

public function getMachineNameSuggestion() {
  $definition = $this->getPluginDefinition();
  $admin_label = $definition['admin_label'];
  $transliterated = $this->transliteration()
    ->transliterate($admin_label, LanguageInterface::LANGCODE_DEFAULT, '_');
  $transliterated = mb_strtolower($transliterated);
  $transliterated = preg_replace('@[^a-z0-9_.]+@', '', $transliterated);
  // Furthermore remove any characters that are not alphanumerical from the
  // beginning and end of the transliterated string.
  $transliterated = preg_replace('@^([^a-z0-9]+)|([^a-z0-9]+)$@', '', $transliterated);
  return $transliterated;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.