public function Language::getConfig in Drupal 10        
                          
                  
                        Same name and namespace in other branches
- 8 core/modules/ckeditor/src/Plugin/CKEditorPlugin/Language.php \Drupal\ckeditor\Plugin\CKEditorPlugin\Language::getConfig()
- 9 core/modules/ckeditor/src/Plugin/CKEditorPlugin/Language.php \Drupal\ckeditor\Plugin\CKEditorPlugin\Language::getConfig()
File
 
   - core/modules/ckeditor/src/Plugin/CKEditorPlugin/Language.php, line 48
Class
  
  - Language 
- Defines the "language" plugin.
Namespace
  Drupal\ckeditor\Plugin\CKEditorPlugin
Code
public function getConfig(Editor $editor) {
  $language_list = [];
  $config = [
    'language_list' => 'un',
  ];
  $settings = $editor
    ->getSettings();
  if (isset($settings['plugins']['language'])) {
    $config = $settings['plugins']['language'];
  }
  $predefined_languages = $config['language_list'] === 'all' ? LanguageManager::getStandardLanguageList() : LanguageManager::getUnitedNationsLanguageList();
  
  foreach ($predefined_languages as $langcode => $language) {
    $english_name = $language[0];
    $direction = empty($language[2]) ? NULL : $language[2];
    if ($direction === LanguageInterface::DIRECTION_RTL) {
      $language_list[$english_name] = $langcode . ':' . $english_name . ':rtl';
    }
    else {
      $language_list[$english_name] = $langcode . ':' . $english_name;
    }
  }
  
  ksort($language_list);
  $config = [
    'language_list' => array_values($language_list),
  ];
  return $config;
}