@@ -173,6 +173,9 @@ |
||
| 173 | 173 | . '<h1>' . $this->tApp->gettext('i18n_ApplicationName') . '</h1>'; |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | + /** |
|
| 177 | + * @param string $labelId |
|
| 178 | + */ |
|
| 176 | 179 | private function setLabel($labelId) |
| 177 | 180 | { |
| 178 | 181 | $labelInfo = $this->appFlags['FI'][$labelId]['Label']; |
@@ -155,6 +155,9 @@ |
||
| 155 | 155 | return $nReturn; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | + /** |
|
| 159 | + * @param integer $yrDate |
|
| 160 | + */ |
|
| 158 | 161 | private function setIncomeTaxFromJson($lngTaxBase, $nValues, $yrDate) { |
| 159 | 162 | $nReturn = 0; |
| 160 | 163 | $howMany = count($nValues); |
@@ -65,6 +65,9 @@ discard block |
||
| 65 | 65 | ]; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | + /** |
|
| 69 | + * @param double $lngBase |
|
| 70 | + */ |
|
| 68 | 71 | private function getValues($lngBase, $aStngs, $shLabels, $dtR) { |
| 69 | 72 | $inDate = $this->tCmnSuperGlobals->request->get('ym'); |
| 70 | 73 | $aReturn = $this->getValuesPrimary($inDate, $lngBase, $aStngs, $shLabels, $dtR); |
@@ -203,11 +206,19 @@ discard block |
||
| 203 | 206 | return implode($sReturn, ''); |
| 204 | 207 | } |
| 205 | 208 | |
| 209 | + /** |
|
| 210 | + * @param string $frm |
|
| 211 | + */ |
|
| 206 | 212 | private function setFormInputIntoFieldSet($frm) { |
| 207 | 213 | return '<div class="tabbertab" id="Input" title="' . $this->tApp->gettext('i18n_FieldsetLabel_Inputs') . '">' |
| 208 | 214 | . $frm . '</div>'; |
| 209 | 215 | } |
| 210 | 216 | |
| 217 | + /** |
|
| 218 | + * @param string $inName |
|
| 219 | + * @param integer $inSize |
|
| 220 | + * @param string $inAfterLabel |
|
| 221 | + */ |
|
| 211 | 222 | private function setFormInputText($inName, $inSize, $inAfterLabel, $crtMinWage = 0) { |
| 212 | 223 | $inputParameters = [ |
| 213 | 224 | 'type' => 'text', |
@@ -286,6 +297,9 @@ discard block |
||
| 286 | 297 | . $this->setStringIntoTag(implode('', $sReturn), 'table') . '</tbody>' . '</div>'; |
| 287 | 298 | } |
| 288 | 299 | |
| 300 | + /** |
|
| 301 | + * @param double $amntLAA |
|
| 302 | + */ |
|
| 289 | 303 | private function setFormOutputBonuses($snValue, $wkDays, $amntLAA, $ovTimeVal) { |
| 290 | 304 | $sRt = []; |
| 291 | 305 | $sMin = $this->tCmnSuperGlobals->request->get('sm') * pow(10, 4); |
@@ -327,6 +341,9 @@ discard block |
||
| 327 | 341 | return implode('', $sReturn) . '</tr></thead></tbody>'; |
| 328 | 342 | } |
| 329 | 343 | |
| 344 | + /** |
|
| 345 | + * @param double $brut |
|
| 346 | + */ |
|
| 330 | 347 | private function setFormOutputTaxations($brut, $amnt) { |
| 331 | 348 | $sRn = []; |
| 332 | 349 | $limitDisplayBase = false; |
@@ -378,6 +395,10 @@ discard block |
||
| 378 | 395 | return implode('', $cellValue); |
| 379 | 396 | } |
| 380 | 397 | |
| 398 | + /** |
|
| 399 | + * @param string $text1 |
|
| 400 | + * @param string $text2 |
|
| 401 | + */ |
|
| 381 | 402 | private function setFrmRowTwoLbls($text1, $text2, $value) { |
| 382 | 403 | return str_replace(':</td>', ':</td><td class="labelS" style="text-align:right;">' |
| 383 | 404 | . $text2 . '</td>', $this->setFormRow($text1, $value, 'amount')); |