Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / editor_info_alter.twig
1 /**
2  * Implements hook_editor_info_alter().
3  */
4 function {{ machine_name }}_editor_info_alter(array &$editors) {
5   $editors['some_other_editor']['label'] = t('A different name');
6   $editors['some_other_editor']['library']['module'] = 'myeditoroverride';
7 }