cObj->stdWrap($conf['lineThickness'], $conf['lineThickness.']) : $conf['lineThickness']; $lineThickness = \TYPO3\CMS\Core\Utility\MathUtility::forceIntegerInRange($lineThickness, 1, 50); $lineColor = isset($conf['lineColor.']) ? $this->cObj->stdWrap($conf['lineColor'], $conf['lineColor.']) : $conf['lineColor']; if (!$lineColor) { $lineColor = 'black'; } $spaceBefore = isset($conf['spaceLeft.']) ? (int)$this->cObj->stdWrap($conf['spaceLeft'], $conf['spaceLeft.']) : (int)$conf['spaceLeft']; $spaceAfter = isset($conf['spaceRight.']) ? (int)$this->cObj->stdWrap($conf['spaceRight'], $conf['spaceRight.']) : (int)$conf['spaceRight']; $tableWidth = isset($conf['tableWidth.']) ? (int)$this->cObj->stdWrap($conf['tableWidth'], $conf['tableWidth.']) : (int)$conf['tableWidth']; if (!$tableWidth) { $tableWidth = '99%'; } $theValue = ''; $theValue .= ''; if ($spaceBefore) { $theValue .= ''; } $theValue .= ''; if ($spaceAfter) { $theValue .= ''; } $theValue .= '
'; if (isset($conf['stdWrap.'])) { $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']); } return $theValue; } }