PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
← All changes | renderer/Cell/CellRenderer.php +3 -5 1.1.41.1.5 View file →
@@ -487,13 +487,11 @@
487 487 && $cellStyleOverride['elementGap'] instanceof StringAttr) {
488 488 $styleValues['elementGap'] = $cellStyleOverride['elementGap']->asAttr();
489 489 }
490 490
491 - if (isset($cellStyleOverride['verticalAlign'])
492 - && $cellStyleOverride['verticalAlign'] instanceof StringAttr) {
493 - $verticalAlign = $cellStyleOverride['verticalAlign']->asAttr();
494 - $styleValues['verticalAlign'] = $verticalAlign;
495 - }
491 + // A cell's own vertical alignment is a pro feature, resolved through
492 + // the `tableberg/cell_styles` filter below. Free only applies the
493 + // table-wide default, so it can't be switched on without a licence.
496 494
497 495 // Border is a pro attribute now (moved off this shared `styles`
498 496 // object, same as backgroundColor before it), resolved instead
499 497 // through the `tableberg/cell_styles` filter below — not here, or