public function StockLocationTranslationHandler::entityFormAlter in Commerce Stock 8
Performs the needed alterations to the entity form.
Parameters
array $form: The entity form to be altered to provide the translation workflow.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
\Drupal\Core\Entity\EntityInterface $entity: The entity being created or edited.
Overrides ContentTranslationHandler::entityFormAlter
File
- modules/
local_storage/ src/ StockLocationTranslationHandler.php, line 17
Class
- StockLocationTranslationHandler
- Defines the translation handler for commerce stock locations.
Namespace
Drupal\commerce_stock_localCode
public function entityFormAlter(array &$form, FormStateInterface $form_state, EntityInterface $entity) {
parent::entityFormAlter($form, $form_state, $entity);
// Move the translation fieldset to a vertical tab.
if (isset($form['content_translation'])) {
$form['content_translation'] += [
'#group' => 'advanced',
'#attributes' => [
'class' => [
'stock-location-translation-options',
],
],
];
$form['content_translation']['#weight'] = 100;
// The basic stock location values will be used, no need for specific
// elements.
$form['content_translation']['status']['#access'] = FALSE;
$form['content_translation']['name']['#access'] = FALSE;
}
$form_object = $form_state
->getFormObject();
$form_langcode = $form_object
->getFormLangcode($form_state);
$translations = $entity
->getTranslationLanguages();
// Change the submit button labels to inform the user that
// publishing/unpublishing won't apply to all translations.
if (!$entity
->isNew() && (!isset($translations[$form_langcode]) || count($translations) > 1)) {
foreach ([
'set active',
'set inactive',
'submit',
] as $button) {
if (isset($form['actions'][$button])) {
$form['actions'][$button]['#value'] .= ' ' . t('(this translation)');
}
}
}
}