mirror of
https://github.com/silverstripe/silverstripe-translatable
synced 2024-10-22 11:05:59 +02:00
616a123ddc
Adds a language dropdown to the link form in the html editor, so that linking to pages in different locales is possible.
12 lines
381 B
PHP
12 lines
381 B
PHP
<?php
|
|
|
|
class TranslatableEditorToolbarExtension extends DataExtension {
|
|
|
|
function updateLinkForm(&$form) {
|
|
$field = new LanguageDropdownField('Language', _t('PageURLSelectionField.LANGUAGE', 'Language'));
|
|
$field->setForm($form);
|
|
$form->Fields()->insertBefore($field, 'internal');
|
|
Requirements::javascript('translatable/javascript/HtmlEditorField.Translatable.js');
|
|
}
|
|
|
|
} |