Skip to content
Snippets Groups Projects
Commit 9ce71acd authored by Ariel Barreiro's avatar Ariel Barreiro Committed by Sascha Grossenbacher
Browse files

Issue #3454273 by hanoii, HLopes, vermario: Order select shows on a...

Issue #3454273 by hanoii, HLopes, vermario: Order select shows on a translation of a paragraphs field on 10.2+
parent e3abfbe4
No related branches found
No related tags found
1 merge request!119fix: properly hide order column on multivalue paragraph translations
Pipeline #246159 passed with warnings
......@@ -427,13 +427,13 @@ function paragraphs_preprocess_field_multiple_value_form(&$variables) {
if (isset($variables['table']['#tabledrag'])) {
// Remove the tabledrag.
unset($variables['table']['#tabledrag']);
unset($variables['table']['#header'][1]);
unset($variables['table']['#header'][2]);
foreach ($variables['table']['#rows'] as $key => $value) {
$variables['table']['#rows'][$key]['data'][0]['class'][] = 'paragraph-bullet';
// Restore the removed weight and give access FALSE.
if (isset($value['data'][2])) {
$variables['table']['#rows'][$key]['data'][1]['data']['_weight'] = $value['data'][2]['data'];
unset($variables['table']['#rows'][$key]['data'][2]);
if (isset($value['data'][3])) {
$variables['table']['#rows'][$key]['data'][1]['data']['_weight'] = $value['data'][3]['data'];
unset($variables['table']['#rows'][$key]['data'][3]);
$variables['table']['#rows'][$key]['data'][1]['data']['_weight']['#access'] = FALSE;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment