LanguageBlock.php

Same filename in this branch
  1. 9 core/modules/language/src/Plugin/Block/LanguageBlock.php
Same filename and directory in other branches
  1. 8.9.x core/modules/language/src/Plugin/Derivative/LanguageBlock.php
  2. 8.9.x core/modules/language/src/Plugin/Block/LanguageBlock.php
  3. 10 core/modules/language/src/Plugin/Derivative/LanguageBlock.php
  4. 10 core/modules/language/src/Plugin/Block/LanguageBlock.php
  5. 11.x core/modules/language/src/Plugin/Derivative/LanguageBlock.php
  6. 11.x core/modules/language/src/Plugin/Block/LanguageBlock.php

Namespace

Drupal\language\Plugin\Derivative

File

core/modules/language/src/Plugin/Derivative/LanguageBlock.php

View source
<?php

namespace Drupal\language\Plugin\Derivative;

use Drupal\Component\Plugin\Derivative\DeriverBase;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\language\ConfigurableLanguageManagerInterface;

/**
 * Provides language switcher block plugin definitions for all languages.
 */
class LanguageBlock extends DeriverBase {
    use StringTranslationTrait;
    
    /**
     * {@inheritdoc}
     */
    public function getDerivativeDefinitions($base_plugin_definition) {
        $language_manager = \Drupal::languageManager();
        if ($language_manager instanceof ConfigurableLanguageManagerInterface) {
            $info = $language_manager->getDefinedLanguageTypesInfo();
            $configurable_types = $language_manager->getLanguageTypes();
            foreach ($configurable_types as $type) {
                $this->derivatives[$type] = $base_plugin_definition;
                $this->derivatives[$type]['admin_label'] = $this->t('Language switcher (@type)', [
                    '@type' => $info[$type]['name'],
                ]);
            }
            // If there is just one configurable type then change the title of the
            // block.
            if (count($configurable_types) == 1) {
                $this->derivatives[reset($configurable_types)]['admin_label'] = $this->t('Language switcher');
            }
        }
        return parent::getDerivativeDefinitions($base_plugin_definition);
    }

}

Classes

Title Deprecated Summary
LanguageBlock Provides language switcher block plugin definitions for all languages.

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