Overrides EntityTranslationController::entityFormAlter().
Overrides EntityTranslationController::entityFormAlter
public function entityFormAlter(array &$form, array &$form_state, EntityInterface $entity) {
parent::entityFormAlter($form, $form_state, $entity);
// Move the translation fieldset to a vertical tab.
if (isset($form['translation'])) {
$form['translation'] += array(
'#group' => 'additional_settings',
'#weight' => 100,
'#attributes' => array(
'class' => array(
'custom-block-translation-options',
),
),
);
}
}